Where can I learn jQuery? Is it worth it? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:08:56Z http://stackoverflow.com/feeds/question/27242 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it 50 Where can I learn jQuery? Is it worth it? Jim Robert 2008-08-26T01:58:23Z 2009-12-12T12:38:58Z <p>Hey, I've had a lot of good experiences learning about web development on <a href="http://www.w3schools.com/" rel="nofollow">w3schools.com</a>. It's hit or miss, I know, but the PHP and CSS sections specifically have proven very useful for reference.</p> <p>Anyway, I was wondering if there was a similar site for <a href="http://en.wikipedia.org/wiki/JQuery" rel="nofollow">jQuery</a>. I'm interested in learning, but I need it to be online/searchable, so I can refer back to it easily when I need the information in the future.</p> <p>Also, as a brief aside, is jQuery worth learning? Or should I look at different JavaScript libraries? I know Jeff uses jQuery on Stack Overflow and it seems to be working well.</p> <p>Thanks!</p> <p><strong>Edit</strong>: jQuery's website has a <a href="http://docs.jquery.com/Tutorials" rel="nofollow">pretty big list of tutorials</a>, and a seemingly comprehensive <a href="http://docs.jquery.com/Main_Page" rel="nofollow">documentation page</a>. I haven't had time to go through it all yet, has anyone else had experience with it?</p> <p><strong>Edit 2</strong>: It seems Google is now hosting the jQuery libraries. That should give jQuery a pretty big advantage in terms of publicity. </p> <p>Also, if everyone uses a single unified aQuery library hosted at the same place, it should get cached for most Internet users early on and therefore not impact the download footprint of your site should you decide to use it.</p> <h2>2 Months Later...</h2> <p><strong>Edit 3</strong>: I started using jQuery on a project at work recently and it is great to work with! Just wanted to let everyone know that I have concluded it is <strong><em>ABSOLUTELY</em></strong> worth it to learn and use jQuery.</p> <p>Also, I learned almost entirely from the Official jQuery <a href="http://docs.jquery.com/Main%5FPage" rel="nofollow">documentation</a> and <a href="http://docs.jquery.com/Tutorials" rel="nofollow">tutorials</a>. It's very straightforward.</p> <h2>10 Months Later...</h2> <p>jQuery is a part of just about every web app I've made since I initially wrote this post. It makes progressive enhancement a breeze, and helps make the code maintainable.</p> <p>Also, all the jQuery plug-ins are an invaluable resource!</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/27248#27248 1 Answer by Lucas for Where can I learn jQuery? Is it worth it? Lucas 2008-08-26T02:03:04Z 2009-12-12T12:35:51Z <p>I use <a href="http://prototypejs.org/" rel="nofollow">Prototype</a>, which I like. I'm afraid I don't know jQuery, so I can't compare them, but I think Prototype is worth checking out. Their API docs are generally pretty good, in my experience (which certainly helps with learnability).</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/27250#27250 4 Answer by yukondude for Where can I learn jQuery? Is it worth it? yukondude 2008-08-26T02:03:49Z 2009-12-12T12:36:40Z <p>It is very much worth it. jQuery really makes JavaScript fun again. It's as if all of JavaScript best practices were wrapped up into a single library.</p> <p>I learned it through <a href="http://www.manning.com/bibeault/" rel="nofollow">jQuery in Action</a> (Manning), which I whipped through over a weekend. It's a little bit behind the current state of affairs, especially in regard to plug-ins, but it's a great introduction.</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/27254#27254 26 Answer by rp for Where can I learn jQuery? Is it worth it? rp 2008-08-26T02:05:41Z 2009-12-12T00:24:34Z <p>Rick Strahl and Matt Berseth's blogs both tipped me into jQuery and man am I glad they did. jQuery completely changes a) your client programming perspective, b) the grief it causes it you, and c) how much fun it can be! </p> <p><a href="http://www.west-wind.com/weblog/" rel="nofollow">http://www.west-wind.com/weblog/</a></p> <p><a href="http://mattberseth.com/" rel="nofollow">http://mattberseth.com/</a></p> <p>I used the book jQuery in Action <a href="http://rads.stackoverflow.com/amzn/click/1933988355" rel="nofollow">http://www.amazon.com/jQuery-Action-Bear-Bibeault/dp/1933988355/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1219716122&amp;sr=1-1</a> (I bought it used at Amazon for about $22). It has been a big help into bootstrapping me into jQuery. The documentation at jquery.com are also very helpful.</p> <p>A place where jQuery falls a little flat is with its UI components. Those don't seem to be quite ready for primetime just yet. </p> <p>It could be that <a href="http://en.wikipedia.org/wiki/Prototype%5FJavaScript%5FFramework" rel="nofollow">Prototype</a> or <a href="http://en.wikipedia.org/wiki/MooTools" rel="nofollow">MooTools</a> or <a href="http://en.wikipedia.org/wiki/Ext%5F%28JavaScript%5Flibrary%29" rel="nofollow">ExtJS</a> are as good as jQuery. But for me, jQuery seems to have a little more momentum behind it right now and that counts for something for me. </p> <p>Check jQuery out. It is very cool! </p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/27256#27256 4 Answer by happyappa for Where can I learn jQuery? Is it worth it? happyappa 2008-08-26T02:06:54Z 2008-08-26T13:48:27Z <p>There are numerous JavaScript libraries that are worth at least a cursory review to see if they suit your particular need. First, come up with a short list of criteria to guide your selection and evaluation process.</p> <p>Then, check out a <a href="http://en.wikipedia.org/wiki/Comparison_of_JavaScript_frameworks" rel="nofollow">high level framework comparison/reviews somewhere like Wikipedia</a>, select a few that fit your criteria and interest you. Test them out to see how they work for you. Most, if not all, of these libraries have websites w/ reference documentation and user group type support. </p> <p>To put some names out there, <a href="http://www.prototypejs.org/" rel="nofollow">Prototype</a>, <a href="http://script.aculo.us/" rel="nofollow">script.aculo.us</a>, <a href="http://jquery.com/" rel="nofollow">Jquery</a>, <a href="http://dojotoolkit.org/" rel="nofollow">Dojo</a>, <a href="http://developer.yahoo.com/yui/" rel="nofollow">YUI</a>...those all seem to have active users and contributers, so they are probably worth reading up on to see if they meet your needs.</p> <p>Jquery is good, but with a little extra effort, maybe you'll find that something else works better for you. </p> <p>Good luck.</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/27260#27260 2 Answer by Chris Conway for Where can I learn jQuery? Is it worth it? Chris Conway 2008-08-26T02:07:50Z 2009-12-12T12:38:15Z <p>There are a number of resources to learn jQuery (which is completely worth it IMHO). Start here <a href="http://docs.jquery.com/Main%5FPage" rel="nofollow">http://docs.jquery.com/Main_Page</a> to read the jQuery documentation. This is a great site for seeing visually what it has to offer: <a href="http://visualjquery.com/1.1.2.html" rel="nofollow">http://visualjquery.com/1.1.2.html</a>. Manning publications also has a great book which is highly recommended called <a href="http://www.manning.com/bibeault/" rel="nofollow">jQuery in Action</a>. As far as JavaScript libraries are concerned, this one and Prototype are probably the most popular if you're looking to compare jQuery to something else.</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/28085#28085 1 Answer by Mark Biek for Where can I learn jQuery? Is it worth it? Mark Biek 2008-08-26T13:53:27Z 2009-12-12T12:38:58Z <p>I have yet to see a convincing argument for picking jQuery over Prototype or vice-versa.</p> <p>Just pick one of the two and learn it. It will make writing JavaScript code fun again.</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/28993#28993 2 Answer by Skippy for Where can I learn jQuery? Is it worth it? Skippy 2008-08-26T20:05:20Z 2008-08-26T20:05:20Z <p>I started learning by looking at jQuery extensions to see how other developers work with the jQuery language. It not only helped me to learn jQuery syntax but also taught me how to develop my own extensions.</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/39685#39685 3 Answer by blake8086 for Where can I learn jQuery? Is it worth it? blake8086 2008-09-02T14:39:21Z 2008-09-02T14:39:21Z <p>I used Prototype for about six months before I decided to learn jQuery. To me, it was like a night and day difference. For example, in Prototype you will loop over a set of elements checking if one exists and then setting something in it, in jQuery you just say $('div.class').find('[name=thing]') or whatever and set it.</p> <p>It's so much easier to use and feels a lot more powerful. The plugin support is also great. For almost any common js pattern, there's a plugin that does what you want. With prototype, you'll be googling for blogs that have the snippet of code you need.</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/55746#55746 6 Answer by Sean O for Where can I learn jQuery? Is it worth it? Sean O 2008-09-11T03:19:25Z 2008-09-11T03:19:25Z <p>A great resource for learning jQuery is: <a href="http://www.learningjquery.com" rel="nofollow">Learning jQuery</a>. The author, Karl Swedberg, also co-wrote the book titled... ready? Yup, <em><a href="http://rads.stackoverflow.com/amzn/click/1847192505" rel="nofollow">Learning jQuery</a></em>. Remy Sharp also has great info geared towards the visual aspects of jQuery on <a href="http://www.jqueryfordesigners.com/" rel="nofollow">his blog</a>.</p> <p>--SEAN O</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/602369#602369 1 Answer by Uzbekjon for Where can I learn jQuery? Is it worth it? Uzbekjon 2009-03-02T13:34:02Z 2009-03-02T13:34:02Z <p>jQuery worths learning!!! I recommend reading "Learning jQuery" and "jQuery in Action". Both books are great with expalanation and examples. The next step is to actually use it to do something. You will find official <a href="http://docs.jquery.com" rel="nofollow">http://docs.jquery.com</a> docummentation very useful. I use it as a reference, google it all the time :)</p> <p>Also "<a href="http://www.learningjquery.com/" rel="nofollow">Learning jQuery</a>" blog mensioned by Sean is also very useful. Also <a href="http://jquery-howto.blogspot.com" rel="nofollow">jQuery HowTo</a> is also has a great collection of jQuery code snippets.</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/602418#602418 1 Answer by Cory House for Where can I learn jQuery? Is it worth it? Cory House 2009-03-02T13:50:51Z 2009-12-12T12:35:04Z <p>Jquery.com is well organized and has many great examples. You don't need to buy a book. I found it easy to pickup on the fly by just referencing website's documentation. If you're someone who learns best by doing, I'd suggest this approach.</p> <p>And yes, it's absolutely worth learning. It'll save you a lot of time and you'll actually look forward to doing JavaScript work!</p> http://stackoverflow.com/questions/27242/where-can-i-learn-jquery-is-it-worth-it/926131#926131 3 Answer by egyamado for Where can I learn jQuery? Is it worth it? egyamado 2009-05-29T14:00:31Z 2009-12-12T12:33:32Z <p>I found that these series of tutorials (<strong>“jQuery for Absolute Beginners” Video Series)</strong> by <a href="http://www.jeff-way.com/" rel="nofollow">Jeffery Way</a> are VERY HELPFUL.</p> <p>It targets those developers who are new to jQuery. He shows how to create many cool stuff with jQuery, like animation, Creating and Removing Elements and more.</p> <p>I learned a lot from it. He shows how it's easy to use jQuery. Now I love it and I can read and understand any jQuery script even if it's complex.</p> <p>Here is one example I like "<strong>Resizing Text</strong>"</p> <p><strong>1- jQuery</strong>:</p> <pre><code>&lt;script language="javascript" type="text/javascript"&gt; $(function() { $('a').click(function() { var originalSize = $('p').css('font-size'); // Get the font size. var number = parseFloat(originalSize, 10); // That method will chop off any integer // from the specifid varibale "originalSize". var unitOfMassure = originalSize.slice(-2); // Store the unit of massure, Pixle or Inch. $('p').css('font-size', number / 1.2 + unitOfMassure); if (this.id == 'larger') { $('p').css('font-size', number * 1.2 + unitOfMassure); } // Figure out which element is triggered. }); }); &lt;/script&gt; </code></pre> <p><strong>2- CSS Styling</strong>:</p> <pre><code>&lt;style type="text/css" &gt; body{ margin-left:300px;text-align:center; width:700px; background-color:#666666;} .box { width:500px; text-align:justify; padding:5px; font-family:verdana; font-size:11px; color:#0033FF; background-color:#FFFFCC;} &lt;/style&gt; </code></pre> <p><strong>2- HTML</strong>:</p> <pre><code>&lt;div class="box"&gt; &lt;a href="#" id="larger"&gt;Larger&lt;/a&gt; | &lt;a href="#" id="Smaller"&gt;Smaller&lt;/a&gt; &lt;p&gt; In today’s video tutorial, I’ll show you how to resize text every time an associated anchor tag is clicked. We’ll be examining the “slice”, “parseFloat”, and “CSS” Javascript/jQuery methods. &lt;/p&gt; &lt;/div&gt; </code></pre> <p>I highly recommend these tutorials:</p> <p><a href="http://blog.themeforest.net/screencasts/jquery-for-absolute-beginners-video-series/" rel="nofollow">http://blog.themeforest.net/screencasts/jquery-for-absolute-beginners-video-series/</a></p>