472,984 Members | 1,927 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,984 software developers and data experts.

Members of the error class/object

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

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

Apr 18 '06 #1
6 1382

Water Cooler v2 wrote:
What're the members of the error class/object?

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


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/...ipt_index.html

Apr 18 '06 #2
Thanks, Martyr2. That looks like it'll be immensely valuable for me.

Apr 18 '06 #3
Martyr2 said on 19/04/2006 3:19 AM AEST:
Water Cooler v2 wrote:
What're the members of the error class/object?

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

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/...ipt_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).
--
Rob
Group FAQ: <URL:http://www.jibbering.com/FAQ>
Apr 19 '06 #4

RobG wrote:
Martyr2 said on 19/04/2006 3:19 AM AEST:
Water Cooler v2 wrote:
What're the members of the error class/object?

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

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/...ipt_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).
--
Rob
Group FAQ: <URL:http://www.jibbering.com/FAQ>


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?

Apr 19 '06 #5
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.
--
Rob
Group FAQ: <URL:http://www.jibbering.com/FAQ>
Apr 20 '06 #6
RobG wrote:
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
Apr 20 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Roger Leigh | last post by:
The C++ book I have to hand (Liberty and Horvath, Teach yourself C++ for Linux in 21 Days--I know there are better) states that "static member functions cannot access any non-static member...
6
by: bazley | last post by:
Why doesn't this work in g++? class Base { public: Base() {} ~Base() {} protected: int foo; }
5
by: StephenRichter | last post by:
I have a base class: namespace ac { public class BasePage : System.Web.UI.Page { private string mPageTitle ; private string mPageUrl ; public BasePage( ) {
6
by: Tappy Tibbons | last post by:
I do not know exactly how to explain what I am asking for, but here goes... Say I have a simple set of classes: ========= Public Class clsPerson Public FirstName As String Public LastName As...
11
by: Kevin Prichard | last post by:
Hi all, I've recently been following the object-oriented techiques discussed here and have been testing them for use in a web application. There is problem that I'd like to discuss with you...
18
by: Joel Hedlund | last post by:
Hi! The question of type checking/enforcing has bothered me for a while, and since this newsgroup has a wealth of competence subscribed to it, I figured this would be a great way of learning...
14
by: lovecreatesbea... | last post by:
Could you tell me how many class members the C++ language synthesizes for a class type? Which members in a class aren't derived from parent classes? I have read the book The C++ Programming...
10
by: Joel | last post by:
Is it true that if we don't specify a default constructor for our class, then the C# compiler provides us with its own that zeroes (or assigns default values) to the data members? I wrote a...
0
by: Abhishek Padmanabh | last post by:
I have been trying out boost's serialization library for the past few days. And I have come across a problem serializing a class that has a reference member. The code is posted as below: ...
7
by: Andy B | last post by:
I have an instance of an object that needs to be accessed by all members of a page like page_load, button_click events and so on. Where in the codebehind would I put the creation of the object...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
2
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM) The start time is equivalent to 19:00 (7PM) in Central...
0
by: Aliciasmith | last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
2
by: giovanniandrean | last post by:
The energy model is structured as follows and uses excel sheets to give input data: 1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 1 Nov 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM) Please note that the UK and Europe revert to winter time on...
3
by: nia12 | last post by:
Hi there, I am very new to Access so apologies if any of this is obvious/not clear. I am creating a data collection tool for health care employees to complete. It consists of a number of...
0
NeoPa
by: NeoPa | last post by:
Introduction For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
0
isladogs
by: isladogs | last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, Mike...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.