Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A good Javascript API reference documentation related to browsers and DOM [duplicate]

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/ )

like image 724
Juha Syrjälä Avatar asked Feb 17 '09 06:02

Juha Syrjälä


People also ask

Is Dom a browser API?

The DOM API is one of the multiple web APIs built into web browsers.

What is a reference API?

Think of API documentation as a reference manual that has all of the information you need to work with the API. It tells the developer/partner/consumer everything that is possible with the API, and how to get started.


2 Answers

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)
like image 78
some Avatar answered Oct 12 '22 23:10

some


Gecko DOM Reference

JavaScript Kit - DOM Reference

And many more.

like image 21
John Sheehan Avatar answered Oct 13 '22 01:10

John Sheehan