guilin 桂林
guilin 桂林

Reputation: 17422

Documentation for the DOM, JavaScript & CSS

What's the best place to find full documentation for the DOM, JavaScript, and CSS?

Upvotes: 1

Views: 526

Answers (1)

Shaz
Shaz

Reputation: 15887

There are many reasons why there isn't just one site that displays every single JavaScript method or function, every DOM manipulative option, or every CSS property. The main reason being that there are multiple browsers with which have different engines.

Most popular engines being used today are: Trident, Gecko, Webkit, and Presto.

JavaScript and CSS are an "always-in-progress" project, so finding all the available api's might be a little hard to find. Though, there are resources out there to help you with particular browsers.

I find these pretty helpful:


If all else fails, refer to W3 (and I don't mean W3 Schools; the two aren't event affiliated):

ECMAScript (where JavaScript derives from) has an official PDF for specifications as well:

Upvotes: 3

Related Questions