vote up 2 vote down star
2

I am looking for a good API documentation for Javascript especially related to browsers and DOM. I am not looking for any kind of Javascript tutorial, but simply a documentation for all standard Javascript classes and for classes used in web browsers.

Something similar to Java's Javadoc ( http://java.sun.com/j2se/1.4.2/docs/api/ )

flag

7 Answers

vote up 3 vote down check

How about the standards?

  1. DOM2 Core (W3C)
  2. DOM2 Events (W3C)
  3. DOM2 HTML (W3C)
  4. DOM2 CSS (W3C)

And for javascript itself:

  1. Standard ECMA-262 ECMAScript Language Specification (ECMA)
link|flag
vote up 0 vote down

It seems that there already was a related question.

link|flag
vote up 0 vote down

I find that when working a lot with these things, nothing beats having a book (which automatically falls open on the 2-3 most popular places due to wear & tear). Nothing beats the rhino book, which also has good coverage on what differences you can expect from different browsers. Get the latest edition.

link|flag
Note for those reluctant to _read a book_: you can buy electronic version of O'Reilly books :), available in several formats. – Richard Levasseur Feb 17 at 7:12
I know it's really so 1900's, but this is the only book I own that is totally worn to pieces. I'm kind-of waiting for a new edition because my current book is worn out. Reinforced with gaffa in the spine. – krosenvold Feb 17 at 7:41
vote up 0 vote down

specific to jQuery I quite like visualjquery.com

link|flag
vote up 1 vote down

I'm rather fond of Got API, which lets you see easily see api docs about all the various pieces of web development.

link|flag
This site would be great if someone bothered to keep it up-to-date. – Scott Evernden Feb 18 at 17:53
vote up 1 vote down

https://developer.mozilla.org/

The DOM section of it is probably what you look for, alongside with Javascript.

link|flag

Your Answer

Get an OpenID
or

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