vote up 21 vote down star
3

When I do a search, the results are a bit hit-and-miss; many of the 'documentation' sites seem more advertising than information. What are the good sources of Javascript language info on the web?

flag

13 Answers

vote up 12 vote down check

I've found w3schools to be a good source of information on javascript and web development in general:

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

link|flag
1  
Ugh. No offense, but w3schools is like a reference for DHTML from 1998. – eyelidlessness Oct 23 '08 at 3:48
vote up 22 vote down

The Mozilla Developer Connection is pretty good: http://developer.mozilla.org/

link|flag
1  
I always include "mdc" along with my Google search keywords to get results from MDC. e.g. try "javascript array mdc" and you'll get the Array object reference at MDC. – Ates Goral Nov 3 '08 at 17:11
vote up 15 vote down

If you want to learn little bit more than the typical 'HOW TO DO' samples and Javascript reference material available on web, you should really check out Javascript articles by Douglas Crockford..

link|flag
vote up 5 vote down

I really like the DevGuru Javascript index. It's not very useful as a tutorial, but if you already know how to use Javascript and want to look something up, then it's invaluable. Every function and object has its own page, and certain object methods also have their own pages when they need to explain a lot and provide examples. I use this all the time when I find myself asking questions like "How do I add options to a dropdown" or "What string methods does Javascript have".

You can find it at http://www.devguru.com/Technologies/ecmascript/quickref/javascript_intro.html

link|flag
vote up 3 vote down

Sun's docs are very good... http://docs.sun.com/source/816-6408-10/

link|flag
vote up 3 vote down

http://www.gotapi.com/jsdomw3s which uses w3schools

link|flag
vote up 3 vote down

http://krook.org/jsdom/

link|flag
Not bad, but more of a DOM doc, not a javascript language doc. – Bruce Sep 14 '08 at 0:48
vote up 3 vote down

This guy's site is pretty good: http://javascript.crockford.com/. This one is pretty good too: http://www.hunlock.com/blogs/Functional_Javascript. But they're more like finishing courses.

link|flag
Agreed. hunlock's site is really good. – troelskn Sep 23 '08 at 21:16
vote up 2 vote down

QuirksMode.org has always been my favorite. Very clear descriptions that integrate browser differences.

link|flag
+1 - Why don't you link to this directly in your post? – Casey Mar 2 at 9:48
vote up 1 vote down

I really like the MSDN docs for this topic. I just think they are easy to navigate and are fairly complete.

As a HTML DOM scripting reference I use this link (this is what I need most of the time):

http://msdn.microsoft.com/en-us/library/ms533050.aspx

It lists all of the HTML objects and associated methods which is very useful.

For a pure language reference there is this:

http://msdn.microsoft.com/en-us/library/z688wt03(VS.71).aspx

This goes into the details and structure of the actual language (EcmaScript or JScript or JavaScript) and is very useful for understanding what is generally possible.

These two resources together are a very thorough reference of what you can do with JavaScript within the context of web development.

link|flag
vote up 0 vote down

Opera's Developer Community Javascript page isn't a language reference, but is one of the more useful resources I've come across. It is not updated all that often.

link|flag
vote up 0 vote down

I prefer http://references2.com, quick search, even better when you use several technologies (who wouldn't?).

link|flag
vote up 0 vote down

Another great site, although it doesn't show up often in Google searches is irt.org specifically the JavaScript FAQ

link|flag

Your Answer

Get an OpenID
or

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