<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:pingback="http://madskills.com/public/xml/rss/module/pingback/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
  <channel>
    <title>StegLog - jQuery</title>
    <link>http://blog.stegnar.com/</link>
    <description>Reflections on Software Development</description>
    <language>en-us</language>
    <copyright>Peter Stegnar</copyright>
    <lastBuildDate>Tue, 11 Aug 2009 05:20:20 GMT</lastBuildDate>
    <generator>newtelligence dasBlog 2.3.9074.18820</generator>
    <managingEditor>peter@stegnar.com</managingEditor>
    <webMaster>peter@stegnar.com</webMaster>
    <item>
      <trackback:ping>http://blog.stegnar.com/Trackback.aspx?guid=f09349e6-e8dc-416f-b618-9a521752772f</trackback:ping>
      <pingback:server>http://blog.stegnar.com/pingback.aspx</pingback:server>
      <pingback:target>http://blog.stegnar.com/PermaLink,guid,f09349e6-e8dc-416f-b618-9a521752772f.aspx</pingback:target>
      <dc:creator>Peter Stegnar</dc:creator>
      <wfw:comment>http://blog.stegnar.com/CommentView,guid,f09349e6-e8dc-416f-b618-9a521752772f.aspx</wfw:comment>
      <wfw:commentRss>http://blog.stegnar.com/SyndicationService.asmx/GetEntryCommentsRss?guid=f09349e6-e8dc-416f-b618-9a521752772f</wfw:commentRss>
      <body xmlns="http://www.w3.org/1999/xhtml">A jQuery library quickly emerging really
popular - and for a reason. I think it is one of the best JavaScript frameworks. You
can do fancy stuff really fast and clean.<br /><br />
You can start a <a href="http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery">Getting
Started with jQuery</a>. On the jQuery homepage you can find a lot of nice <a href="http://docs.jquery.com/Tutorials">tutorials</a>.
If you have not try jQuery, please do. You will be amazed.<br /><br />
Bassically what jQuery brings to web delopement is that it separates HTML and behaviour.
Similarly what CSS brought: separation of presentation and HTML.<br /><br />
There are a great tool named <a href="http://getfirebug.com/">Firebug</a>, which really
helps with web development. This tool surely demand a separate post. You can inspect
a web page, play with CSS on the fly, debug, use a console ... Here it comes a jQuery.
You can write a jQuery instruction right into the console, and <b>it will be applied
on the fly</b>. Amazing. All you have to do is to "<a href="http://www.learningjquery.com/2006/12/jquerify-bookmarklet">jQuerify</a>"
a web page.<br /><br />
Another great thing to know when you work with jQuery is what the selector will actually
select. You can try a <a href="http://www.selectorgadget.com/">SelectorGadget </a>tool
which shows the most appropriate selector for the selected element(s). This tool is
so great also because all you have to do to run it, just click a "<a href="javascript:(function(){var%20s=document.createElement('div');s.innerHTML='Loading...';s.style.color='black';s.style.padding='20px';s.style.position='fixed';s.style.zIndex='9999';s.style.fontSize='3.0em';s.style.border='2px%20solid%20black';s.style.right='40px';s.style.top='40px';s.setAttribute('class','selector_gadget_loading');s.style.background='white';document.body.appendChild(s);s=document.createElement('script');s.setAttribute('type','text/javascript');s.setAttribute('src','http://www.selectorgadget.com/stable/lib/selectorgadget.js?raw=true');document.body.appendChild(s);})();">link</a>"
when you are on the desired page to be check. Great!<br /><br />
More on Firebug and jQuery in the great video:<br /><ul><li><a href="http://polymorphicpodcast.com/podcast/video/firebug-and-jquery/">http://polymorphicpodcast.com/podcast/video/firebug-and-jquery/</a></li></ul><br /><img width="0" height="0" src="http://blog.stegnar.com/aggbug.ashx?id=f09349e6-e8dc-416f-b618-9a521752772f" /></body>
      <title>jQuery </title>
      <guid isPermaLink="false">http://blog.stegnar.com/PermaLink,guid,f09349e6-e8dc-416f-b618-9a521752772f.aspx</guid>
      <link>http://blog.stegnar.com/2009/08/11/jQuery.aspx</link>
      <pubDate>Tue, 11 Aug 2009 05:20:20 GMT</pubDate>
      <description>A jQuery library quickly emerging really popular - and for a reason. I think it is one of the best JavaScript frameworks. You can do fancy stuff really fast and clean.&lt;br&gt;
&lt;br&gt;
You can start a &lt;a href="http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery"&gt;Getting
Started with jQuery&lt;/a&gt;. On the jQuery homepage you can find a lot of nice &lt;a href="http://docs.jquery.com/Tutorials"&gt;tutorials&lt;/a&gt;.
If you have not try jQuery, please do. You will be amazed.&lt;br&gt;
&lt;br&gt;
Bassically what jQuery brings to web delopement is that it separates HTML and behaviour.
Similarly what CSS brought: separation of presentation and HTML.&lt;br&gt;
&lt;br&gt;
There are a great tool named &lt;a href="http://getfirebug.com/"&gt;Firebug&lt;/a&gt;, which really
helps with web development. This tool surely demand a separate post. You can inspect
a web page, play with CSS on the fly, debug, use a console ... Here it comes a jQuery.
You can write a jQuery instruction right into the console, and &lt;b&gt;it will be applied
on the fly&lt;/b&gt;. Amazing. All you have to do is to "&lt;a href="http://www.learningjquery.com/2006/12/jquerify-bookmarklet"&gt;jQuerify&lt;/a&gt;"
a web page.&lt;br&gt;
&lt;br&gt;
Another great thing to know when you work with jQuery is what the selector will actually
select. You can try a &lt;a href="http://www.selectorgadget.com/"&gt;SelectorGadget &lt;/a&gt;tool
which shows the most appropriate selector for the selected element(s). This tool is
so great also because all you have to do to run it, just click a "&lt;a href="javascript:(function(){var%20s=document.createElement('div');s.innerHTML='Loading...';s.style.color='black';s.style.padding='20px';s.style.position='fixed';s.style.zIndex='9999';s.style.fontSize='3.0em';s.style.border='2px%20solid%20black';s.style.right='40px';s.style.top='40px';s.setAttribute('class','selector_gadget_loading');s.style.background='white';document.body.appendChild(s);s=document.createElement('script');s.setAttribute('type','text/javascript');s.setAttribute('src','http://www.selectorgadget.com/stable/lib/selectorgadget.js?raw=true');document.body.appendChild(s);})();"&gt;link&lt;/a&gt;"
when you are on the desired page to be check. Great!&lt;br&gt;
&lt;br&gt;
More on Firebug and jQuery in the great video:&lt;br&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;a href="http://polymorphicpodcast.com/podcast/video/firebug-and-jquery/"&gt;http://polymorphicpodcast.com/podcast/video/firebug-and-jquery/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;br&gt;
&lt;img width="0" height="0" src="http://blog.stegnar.com/aggbug.ashx?id=f09349e6-e8dc-416f-b618-9a521752772f" /&gt;</description>
      <comments>http://blog.stegnar.com/CommentView,guid,f09349e6-e8dc-416f-b618-9a521752772f.aspx</comments>
      <category>jQuery</category>
    </item>
  </channel>
</rss>