vote up 5 vote down star
3

I'm a front-end developer and I was looking for opinions about the best all-round online documentation for javascript/css/html/xhtml/dom/browser quirks and support. I've tried Sitepoint, Quirksmode, W3Schools but all of these seem to be lacking in certain aspects and have been using them in combination.

flag

I've compiled all of these and more into a topic-linked list - stackoverflow.com/questions/823718/… – Jeremy Rudd May 5 at 8:11

19 Answers

vote up 4 vote down check

I like http://www.gotapi.com

link|flag
vote up -3 vote down

I tend to go to http://msdn.microsoft.com/ first.

link|flag
vote up 7 vote down

I like Mozilla's references:

http://developer.mozilla.org/en/JavaScript

http://developer.mozilla.org/en/DOM

These are not at all the one stop site you want, but they help me.

link|flag
vote up 0 vote down

There is a very good german reference (and french I think) at selfhtml.org.

link|flag
vote up 2 vote down

I like w3schools for html or simple questions.

For Javascript, I find Mozilla Developer Center to be pretty useful: Core Javascript 1.5 Reference

link|flag
I wish w3schools was a little more careful with what they write about Javascript. I understand it's aimed at beginners, but some things are just plain misleading (as an example, look at w3schools.com/JS/js_variables.asp where it claims that x = 5 and var x = 5 have the same effect) – kangax Aug 18 at 12:58
vote up 0 vote down

zvon.org

http://reference.sitepoint.com/

link|flag
vote up 0 vote down

blooberry.com is a great HTML/CSS reference site.

link|flag
vote up 1 vote down

Go straight to W3C docs. They're a bit cryptic at times, but they're solid documentation.

For quirks, obviously sites like Quirksmode are good. But only once you've read actual W3C documentation.

link|flag
vote up 1 vote down

Sitepoint has a very comprehensive guide to CSS

link|flag
vote up 1 vote down

devguru.com

link|flag
I think DevGuru is very good. It is very fast to get a good overview of what you are looking for. – awe Aug 18 at 12:50
vote up 0 vote down

I recommend going through these JavaScript Video Lectures (15 of them).

link|flag
vote up 0 vote down

GotAPI is a fantastic resource http://www.gotapi.com

link|flag
vote up 1 vote down

I rely on http://quirksmode.org/resources.html for information on HTML/CSS/JavaScript. This resource does a great job addressing cross-browser compatibility issues in a helpful table format.

link|flag
vote up 0 vote down

http://www.selfhtml.org/ is in German (originally) and French (translated). English translation has been unfortunately suspended: http://en.selfhtml.org/

link|flag
vote up 2 vote down

You've actually hit the nail on the head in your description. There is no single website that'll provide you with the detail you seek in every one of those facets.

I find these three are incredibly useful when starting on a blank page: Mozilla DOM Reference (for general js syntax, etc), w3schools x/html reference (look up uncommon attributes!) and quirksmode (cross-browser js/style details). These are quite highly ranked so look for their urls if you're searching for something specific.

As for specific browser quirks, your best bet is to handle these as they come up and develop skills for googling for answers efficiently. Lots of browser quirks have many variables that go into what you actually end up seeing and how developed a 'solution' is for a specific quirk depends on how much time someone has spent investigating it. Read a bunch of search results and see if the problems are all similar or completely separate. Then, refine your search!

link|flag
vote up 1 vote down

I'd recommended w3schools.com. It's a pretty good and comprehensive library, I find.

link|flag
vote up 0 vote down

I always start with www.zvon.org, especially the references section. Provides a good overview and links directly to the corresponding standards.

link|flag
vote up 0 vote down
  • javascriptkit.com/jsref/ (convenient JavaScript reference with examples)
  • javascriptkit.com/domref/ (DOM reference with examples)
link|flag

Your Answer

Get an OpenID
or

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