Is there a JavaScript API like there is for Java? Or anything that has a list of all the functions in JavaScript? Like, document.body.onclick, and stuff like that.
Thanks.
Printable View
Is there a JavaScript API like there is for Java? Or anything that has a list of all the functions in JavaScript? Like, document.body.onclick, and stuff like that.
Thanks.
There's tons out there.
There's a nice list of functions here:
http://www.coolnerds.com/xrefs/xrefjsom.htm
THE JavaScript reference can be found:
[URL] http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/refer ence/dhtmlrefs.asp
More than just a simple document, when you want to find out what objects have what properties, methods, and attributes, this is where to go.
[This message has been edited by Zoma (edited July 12, 2001).]
Thanks guys. That was exactly what I wanted.