vote up 10 vote down star
4

I tried to search for one, but there's none available. The best 2 suggested sources are MDC and W3Schools.

Anybody happens to know why? Thank you so much!

flag

75% accept rate
11  
Avoid w3schools; its JS material tends to be extremely poor, IMHO. – NickFitz Oct 22 at 10:53
What MDE? link please? – hasen j Oct 24 at 17:32
Sorry I meant MDC; developer.mozilla.org/en/About_JavaScript – huy Oct 25 at 6:13
This is kind of a random comment, but personally I think all browsers should scrap all the Javascript/Jscript bastardisations and implement jQuery natively. :) – DisgruntledGoat Nov 14 at 0:03
1  
jQuery wallpapers over the DOM, but doesn't actually replace JavaScript. – Rob Nov 14 at 0:04

10 Answers

vote up 15 vote down check

It's not like there is an official JavaScript release. All the browsers have made their own js engine - some are using the same though. But especially IE has their own version that doesn't support a lot of what the other browsers support, making it very difficult to make a general js reference.

Edit:
While I know there is an official ECMA standard and developement team, my point is that it doesn't really matter as long as browsers (IE) doesn't live up to it. At the end of the day, clients want js to work for IE too. They wont care about the ECMA standards, they just want it to work. This is here js libs come into the picture, but that's another story.

It's the same issues with HTML and CSS, we can't use these tools for active development until:

  • All browsers support them.
  • We supply the browsers with code to make them support it.
  • It's okay that it doesn't work in all browsers.
link|flag
I see, so different browsers have its own implementation according to the ECMA-262 standard that Michael mentioned above? – huy Oct 22 at 10:08
2  
@huy: yes - with varying levels of support for/varying interpretations of that standard, sadly... – Andrzej Doyle Oct 22 at 10:25
1  
-1, There is an official Javascript standard: it's called ECMAscript and there's an official body behind it: en.wikipedia.org/wiki/Ecma_International – hasen j Oct 22 at 13:19
vote up 6 vote down

I would say this one is the "official":

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

You also have the ECMAScript Language Specification

link|flag
Also for IE? :) – Victor Oct 22 at 10:05
3  
IE doesn't have a JavaScript engine - it implements JScript instead (which is largely compatible). msdn.microsoft.com/en-us/library/… looks like the official reference for that. – David Dorward Oct 22 at 10:07
1  
Hmm... developer.mozilla is very helpful, but I wouldn't call it "official". The ECMAScript Language Specification is closer to "official". – Steve Harrison Oct 22 at 10:14
2  
The ECMAScript Language Specification is the official reference for ECMAScript. JavaScript is a superset of ECMAScript, was created by Netscape, and Mozilla inherited MDC from Netscape (although the name has changed since then) – David Dorward Oct 22 at 10:50
+1 for the ECMAScript standard. – Jason S Nov 14 at 0:11
vote up 11 vote down

You can try with the official ECMAscript site,

http://www.ecmascript.org/

but the useful thing is actually the implementation of each browser.

I like this cheatsheet very much:

http://www.dannyg.com/ref/jsquickref.html

link|flag
vote up 1 vote down

There is an official reference, it just isn't in a very convenient format. It is the ECMA-262 specification. It is a single, very large PDF document, instead of a searchable set of HTML pages.

link|flag
vote up 1 vote down

I find the old-school Netscape 4 JavaScript docs very useful for this purpose. Although they're obviously totally outdated, and some of the DOM features in them like Layers are long gone, for the language basics they're really solid.

That's because before the days of IE supremacy and ECMA standardisation, Netscape's JavaScript was the definitive JavaScript. Other browsers pretty much had to implement exactly what you see in those old docs.

They're also much easier to read than the ECMA-262 document, which even by the standards of standards documents is an absolute horror.

link|flag
vote up 0 vote down

Any revisions of JavaScript pages on MDC by a member of the Mozilla Documentation team (like Eric Shepherd) is official. JavaScript is officially maintained by Mozilla so only documentation by Mozilla is official. The only engines that support JavaScript are currently made by Mozilla and every other engine implements ECMAScript. JavaScript and ECMAScript have quite a few differences (for example, the awesome let statement).

link|flag
vote up 1 vote down

It is very difficult to have an "official" reference as long as there are implementations (in all browsers) and there is a specification (ECMAScript) but no conformance tests of implementations against the specifications.

Now though, we have the EMCAScript 5 conformance suite at http://es5conform.codeplex.com/ - and there seems some consensus that ECMAScript implementations will come closer together, making ECMAScript more likely to be the official reference for the language.

link|flag
vote up 1 vote down

If you're using ECMAScript for the web (which 99.9% of people are), then beyond the basics syntactics of the language (covered in the ECMA-262 spec mentioned above), what you're probably looking for is a DOM reference - which is the ECMAScript API that's used to interact with web documents.

I'm very surprised noone has mentioned the DOM api sofar. Current W3C DOM standard is here: http://www.w3.org/TR/DOM-Level-2-Core/

(btw, as for the naming confusion - ECMAScript is the name of the official standard, and "Javascript" and "JScript" are Netscape and Microsoft's proprietary "forks")

link|flag
vote up 0 vote down

I really like Daniel Krook's apidoc, even though it could use some explanations and examples. I would really like to see a krook w3school mashup.

link|flag

Your Answer

Get an OpenID
or

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