Members of the error class/object

W

Water Cooler v2

What're the members of the error class/object?

Is there a complete reference to all JavaScript objects available on
the Web?
 
R

RobG

Martyr2 said on 19/04/2006 3:19 AM AEST:
Devguru is pretty good. Here is their link. Just click "objects" at the
top to see all the objects. Each have a brief description, method
listing and small examples of each.

http://www.devguru.com/Technologies/ecmascript/quickref/javascript_index.html

That reference seems to jumble all sorts of stuff together without any
clear identification between native, built-in and host objects. Look at
their reference for a 'text' object (which refers to an input element of
type text).

It also suggests stuff like:

Syntax: object.onBlur="myJavaScriptCode"


which is very misleading - it should say something like:

Syntax: object.onBlur = functionReference or functionExpression


Try the Gecko DOM reference instead:

<URL:http://developer.mozilla.org/en/docs/Gecko_DOM_Reference>


It's a work in progress but covers most of the DOM, it's much less
likely to mislead and links to relevant standards (even MSDN for IE-isms).
 
M

Martyr2

RobG said:
Martyr2 said on 19/04/2006 3:19 AM AEST:

That reference seems to jumble all sorts of stuff together without any
clear identification between native, built-in and host objects. Look at
their reference for a 'text' object (which refers to an input element of
type text).

It also suggests stuff like:

Syntax: object.onBlur="myJavaScriptCode"


which is very misleading - it should say something like:

Syntax: object.onBlur = functionReference or functionExpression


Try the Gecko DOM reference instead:

<URL:http://developer.mozilla.org/en/docs/Gecko_DOM_Reference>


It's a work in progress but covers most of the DOM, it's much less
likely to mislead and links to relevant standards (even MSDN for IE-isms).

Certainly the reference you suggested is very good, thanks. However,
one will have to be careful because it appears to be only the
Firefox/Mozilla DOM reference? Or am I mistaken?
 
R

RobG

Martyr2 said on 20/04/2006 9:28 AM AEST:
RobG wrote: [...]
Try the Gecko DOM reference instead:

<URL:http://developer.mozilla.org/en/docs/Gecko_DOM_Reference>


It's a work in progress but covers most of the DOM, it's much less
likely to mislead and links to relevant standards (even MSDN for IE-isms).

Certainly the reference you suggested is very good, thanks. However,
one will have to be careful because it appears to be only the
Firefox/Mozilla DOM reference? Or am I mistaken?

It's the Gecko DOM reference, though unfortunately not written by the
team that actually wrote Gecko.

There are no comprehensive references for DOM scripting that are
accurate and inclusive of all browsers. I like the Gecko reference
because most of it is applicable to any browser that implements DOM 0
and is compliant with the W3C DOM. Gecko specific features are
generally noted, as are cases where IE is known to differ.

It is not complete but it links to relevant specifications and overall
it is better than other references - unless you are after something
specific to some other browser or UA.
 
T

Thomas 'PointedEars' Lahn

RobG said:
It's the Gecko DOM reference, though unfortunately not written by the
team that actually wrote Gecko.

Yes, it is. The current Gecko DOM Reference as a Wiki is based on the
previous Gecko DOM Reference which was written by those people and was
not a Wiki. (I still have that previous version on my local Web server
as I mirrored it months ago.)


PointedEars
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,682
Members
48,796
Latest member
Greg L.

Latest Threads

Top