What are some of the best reference sites for HTML and JavaScript programming

Viewed 18037

Best reference sites for HTML and JavaScript programming:

*There is some controversy over the quality and accuracy of the information in the tutorials offered by W3Schools. Not as many, however, take issue with the reference section.


Related questions, mostly the source of the above links:

10 Answers

MSDN has a lot of reference materials for web development. It contains only IE-specific information which can be either an advantage or a disadvantage depending on what you are looking for. Here are direct links to the HTML/CSS (includes DOM), JScript (Microsoft flavor of ECMAScript aka JavaScript) and VBScript. The documentation is very well written, and is a great source for answers to DOM/JavaScript questions, since they tend to be mostly the same across browsers.

Also, as references go, let's not forget the official specifications for HTML, CSS, and the myriad of other standards specified by W3C.

Best resources to learn JavaScript

I have been catching up on modern Javascript techniques, and learning some handy tricks, by running, reading and editing GreaseMonkey scripts from userscripts.org.

Related