vote up 14 vote down star
13

over the last couple of years I've seen jquery grow leaps and bounds. And every time I look at some jquery code I feel there is something I am missing which I need to learn. I've given their documentation a try, and it seems to be ok for basic stuff.

Can you guys suggest a good jquery book that might help? I'm looking for something that doesnt go much in depth into the theory part of jquery but actually does and shows examples of how to do all the cool stuff.

Back in the days when I was in school, I never cared for JS, CSS, HTML ...but now that after 3 years after school I see myself doing a lot of server side web development. I want to learn these technologies.

flag

25% accept rate
I'm in the same boat. I did some web dev stuff over the years, mostly fairly static stuff. I occasionally had to hack together some JS and never really liked it, but looking at jQuery it looks pretty cool and that seems to be the way things are moving these days, so I figure I might as well dustbin that whole "eew JavaScript" mindset and brush up on that stuff. +1 – Adam Jaskiewicz Apr 24 at 20:14
Very similar to the following question. stackoverflow.com/questions/414494 – William Brendel Apr 26 at 21:39
Here's a getting started tutorial for JQuery - dotnetcube.com/post/… – unknown (yahoo) Jul 31 at 19:13

18 Answers

vote up 1 vote down

Here are two good articles for getting started:

http://msdn.microsoft.com/en-us/magazine/dd453033.aspx

http://msdn.microsoft.com/en-us/magazine/dd569752.aspx

link|flag
vote up 3 vote down

One of the best places to start is the jQuery Tutorials:

Tutorials - jQuery

link|flag
vote up 1 vote down

Read the documentation - jQuery has really good support as well as lots of examples on jquery.com itself.

link|flag
vote up 12 vote down

I think you would be better at learning javascript first and from there you can learn its libraries like jQuery. Book I would recommend would be JQuery in Action, its the best IMO and recently I found a link that makes the first chapter free online just to give you a little taste. Trust me worth the buy

link|flag
link? makes it free online? could you share??? (looked for it but was rather unlucky... found just the first chapter or so...) – MasterPeter Apr 24 at 21:09
it only gives the first chapter free – TStamper Apr 30 at 0:19
vote up 9 vote down

I think you'd be best off by learning JavaScript first. Learning a library without the background knowledge is going to leave you high and dry at the worst possible times.

Besides, you'll appreciate jQuery that much more when you realize you can accomplish in 1 line what used to take 50. :)

link|flag
5  
This advice is going to be common, and while I agree with it on some level, it's basically asking you to learn low level stuff first which makes no sense. Nobody starts out learning C++ low level file IO anymore. It's just not practical or recommended. Learn jQuery, then, as needed, learn the nuances. It's a progression. You can't learn to run until you've learned to crawl. – altCognito Apr 24 at 19:56
3  
Not really, sometimes it is good to learn the basics so that you know which comes from the library and which does not. That way, in cases where jQuery might be just a tad too much, you can fall back on good old knowledge. – Dhana Apr 24 at 20:07
1  
@altCognito - I use jQuery every time I need to any sort of client-side scripting these days. As powerful as it is, there are still many times when knowing how things like splice() and getTimezoneOffset() will save me a ton of headache. Too many people today rely on jQuery + plugins to accomplish very simple things. For example, why add 250kb of overhead with jQuery UI when you accomplish the same thing with jQuery + a few lines of custom code? – Mark Hurd Apr 24 at 20:19
@Mark Yeah, jQuery UI is ridiculously heavy for certain simple effects and elements. jQuery by itself, though, I feel is extremely light for what it does. I dont have to worry about any cross-browser nuances anymore. That, in an of itself is worth the extra, what, 50kb? – KyleFarris Apr 24 at 20:31
@KyleFarris - Like I said, I use jQuery on all my projects. It's DEFINITELY worth the extra 18kb IMHO. I wouldn't develop a project without it anymore. As a time-saver it's absolutely priceless. Coding via direct DOM manipulation is just inefficient now - as altCognito mentioned - but it's still important to know for those "oh, crap" moments. – Mark Hurd Apr 24 at 20:38
show 4 more comments
vote up 7 vote down

Hey! Check out Jquery for absolute beginners video series . I love the blogs at this page. Check em out, and you'll learn what you need for JQuery and some additional Javascript. I believe that link will show you the fundations you need to understand the JQuery functions you want too.

link|flag
vote up 0 vote down

Yes, I agree Mark, first start with Javascript itself by w3schools. If you need to learn HTML and CSS w3schools is the best place to learn. then try to solve your problems with JQuery. It will be more effective I think.

link|flag
vote up 0 vote down

I agree with Mark Hurd below. Learn Javascript first.

The first book that gave me "aha- this is amazing" is DOM Scripting: Web Design with JavaScript and the Document Object Model

Once you get the basics of that, what jQuery does will come more naturally to you and it will seem easy.

link|flag
vote up 2 vote down

I started using jQuery in a project and was learning from jquery website and my colleagues. After reading jQuery in Action I've learned many things that I was missing. I really enjoyed reading this book. And still is a very good reference. Jquery in Action also introduces to some jquery's plugin.

link|flag
vote up 0 vote down

http://www.quirksmode.org/

and his book ppk on JavaScript

link|flag
vote up 1 vote down
  1. Learn the language first: Javascript The Definitive Guide, 5th Edition

  2. Learn jQuery: jQuery in Action

link|flag
vote up 1 vote down

When this book comes out, you will learn a lot about how to write good javascript from the guy who wrote jQuery. Personally, I can't wait for it come out.

Seriously... this one is worth getting when it comes out...

Secrets of the JavaScript Ninja

link|flag
I've been reading the meap version, I must say its pretty good ( although not stellar). – Surya Apr 26 at 21:38
Wow... I've never heard of meap before. That's pretty cool. But, in this case, maybe I CAN wait for it to come out. I'd rather see the finished product than the in-production version, haha. Maybe that's why it's not 'stellar' yet? Glad someone agrees with me though. ;) – KyleFarris Apr 26 at 21:52
vote up 1 vote down

These books are all (co) authored by John Resig who also wrote jQuery itself.

For JS in general, I've also heard very good things about this: JavaScript: The Good Parts by Douglas Crockford who works for Yahoo!.

Crockford and Resig both have free and comprehensive videos at the YUI theater. These three are good for a broad overview of general JS:

  • Douglas Crockford — The JavaScript Programming Language
  • Douglas Crockford — Advanced JavaScript
  • Douglas Crockford — An Inconvenient API: The Theory of the DOM
link|flag
vote up 0 vote down

A great start point is the its online documentation.

JQuery gives you a great chance to "Write Less, Do More". But javascript is not quite comfortable to write and to debug. I do not think it makes much sense to dive into javascript. I suggest you as take a look at GWT. You can write code in java, which will be generated to valid javascript automatically.

link|flag
vote up 0 vote down

Have a look at these video series they are awesome !! link

link|flag
vote up 0 vote down

This link has a massive collection of almost everything you want to know about JQuery

JQuery cheat sheet

There's a getting started tutorial here - Getting started with JQuery in ASP.NET

link|flag
vote up 0 vote down

Another good book (along with "jQuery in Action") is "Learning JQuery 1.3", the updated version of (I think) the very first jQuery book.

From the Amazon product description: "Basic JavaScript programming knowledge is required. You will need to know the basics of HTML and CSS, and should be comfortable with the syntax of JavaScript".

link|flag
vote up 1 vote down

I recommend the articles and videos (screencasts) available at:

http://www.jqueryfordesigners.com/

because the author, Remy Sharp, describes how and why he makes the choices he does and you can see the progress from start to finish.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.