views:

261

answers:

7

Hi,

Can someone suggest good learning materials or websites to learn JavaScript and jQuery? Am pretty new to this and want to learn right from basics.

Thanks in advance, Geetha

+6  A: 

Javascript: The Good Parts by Douglas Crockford is a really good and thorough book about Javascript. Once you speak Javascript you don't really have to learn jQuery, you can just use it.

Josef
+2 if it were possible
Darko Z
+1 for "use jQuery, not learn it". This is something which works for most libraries in most languages. Don't try t learn it, but use what you need when you need it.
Dykam
I'm not sure this book is that good for absolute beginners. It's OK though after you grasped the basics, or maybe for reading it in parallel with a beginner's tutorial.
Ionuț G. Stan
+1  A: 

If you'd like to learn what's behind JavaScript you can go hardcore and dive into the specification:

http://www.ecma-international.org/publications/standards/Ecma-262.htm

Benedikt Eger
-1. Specs are for researching problems, not for a beginner to learn from.
Macha
+2  A: 

A re-introduction to JavaScript by Simon Willison is a very concise overview of the language, yet it offers you a good starting point.

Ionuț G. Stan
+2  A: 

If you're already a programmer, Pro Javascript Techniques by John Resig was a good book for having that "aha" moment with javascript - it finally started to make sense. Surprisingly enough, even though it's written by the creator of jQuery - it really doesn't cover it at all. Although you will gain a deeper understanding of how to write good Object Oriented stuff using javascript.

gnarf
+2  A: 

I have learnt from the first one

maconstateit Tuts on Javascript

EDIT: SoftLookup

  http://www.javascriptmall.com/learn/

  http://jennifermadden.com
Narayan
A: 

http://w3schools.com/js/default.asp

Excellent resource. Completely free.

baeltazor
It has been mentioned in earlier answers, and it isn't excellent, it is littered with errors.
David Dorward