6

I am looking for an equivalent to the php.net manual (http://us3.php.net/manual/en/) but for javaScript methods and syntax.

Is there a single site that lists out all the javaScript functions available in a clear and concise manner as php.net provides for the PHP language?

zeckdude
  • 15,877
  • 43
  • 139
  • 187

3 Answers3

12

Mozilla Developer Central with its Core JavaScript Reference is a good resource. But as JavaScript is object-oriented, the reference is object-oriented too and there is no overview of all functions/methods.

And if you want to did deeper into how JavaScript works, I recommend to read the ECMAScript specification, the standardized language dialects like JavaScript and JScript are derived from.

Gumbo
  • 643,351
  • 109
  • 780
  • 844
5

Mozilla's reference is pretty good, although it's structured in a different way than php.net. That page lists classes and global functions, at least, but it doesn't touch upon the DOM. (Which, technically speaking, isn't part of JavaScript of course.)

Thomas
  • 174,939
  • 50
  • 355
  • 478
0

Unfortunately when you search for JS/HTML/CSS first link you would get is W3Schools. But why not to use it http://www.w3fools.com/ this will give you a nice answer.

Prefer Mozilla Developer Network and Webkit

Community
  • 1
  • 1
Anil Namde
  • 6,452
  • 11
  • 63
  • 100