Connecting Tech Pros Worldwide Forums | Help | Site Map

Docmuentation for predefined objects, e.g. Image?

Tony Nelson
Guest
 
Posts: n/a
#1: Sep 7 '08
Where is the documentation for the predefined objects that aren't part
of the Core? Objects like Document and Image were documented in the
Javascript 1.2 documentation, but are absent from any documentation I
can find for Javascript 1.5. I suppose I can just use the Javascript
1.2 documentation, and ignore any changes in the last ten years, but I'd
really prefer to target the more recent Javascript 1.5.
__________________________________________________ ______________________
TonyN.:' *firstname*nlsnews@georgea*lastname*.com
' <http://www.georgeanelson.com/>

David Karr
Guest
 
Posts: n/a
#2: Sep 7 '08

re: Docmuentation for predefined objects, e.g. Image?


On Sep 7, 11:11*am, Tony Nelson
<*firstname*nlsnews@georgea*lastname*.comwrote:
Quote:
Where is the documentation for the predefined objects that aren't part
of the Core? *Objects like Document and Image were documented in the
Javascript 1.2 documentation, but are absent from any documentation I
can find for Javascript 1.5. *I suppose I can just use the Javascript
1.2 documentation, and ignore any changes in the last ten years, but I'd
really prefer to target the more recent Javascript 1.5.
Is this what you're looking for? <http://developer.mozilla.org/en/DOM/
document#Introduction>
Thomas 'PointedEars' Lahn
Guest
 
Posts: n/a
#3: Sep 7 '08

re: Docmuentation for predefined objects, e.g. Image?


Tony Nelson wrote:
Quote:
Where is the documentation for the predefined objects that aren't part
of the Core? Objects like Document and Image were documented in the
Javascript 1.2 documentation, but are absent from any documentation I
can find for Javascript 1.5. I suppose I can just use the Javascript
1.2 documentation, and ignore any changes in the last ten years, but I'd
really prefer to target the more recent Javascript 1.5.
There is a contradiction. If you posted with a proper From header, I might
tell you why.
Quote:
__________________________________________________ ______________________
TonyN.:' *firstname*nlsnews@georgea*lastname*.com
' <http://www.georgeanelson.com/>
Your signature is borken, too. It should be delimited like this:

--
realism: HTML 4.01 Strict
evangelism: XHTML 1.0 Strict
madness: XHTML 1.1 as application/xhtml+xml
-- Bjoern Hoehrmann
Lasse Reichstein Nielsen
Guest
 
Posts: n/a
#4: Sep 8 '08

re: Docmuentation for predefined objects, e.g. Image?


Tony Nelson <*firstname*nlsnews@georgea*lastname*.comwrites:
Quote:
Where is the documentation for the predefined objects that aren't part
of the Core? Objects like Document and Image were documented in the
Javascript 1.2 documentation, but are absent from any documentation I
can find for Javascript 1.5. I suppose I can just use the Javascript
1.2 documentation, and ignore any changes in the last ten years, but I'd
really prefer to target the more recent Javascript 1.5.
The reason you don't find them is that they are not part of the
Javascript Core/ECMAScript specification any more, because they are
have been standardized by a completely different group.
The corresponding DOM objects are specified in the W3C DOM Level 2
standard, either Core or HTML:
http://www.w3.org/TR/DOM-Level-2-Core/
http://www.w3.org/TR/DOM-Level-2-HTML/

There are some de-facto standard properties in browser object models
that are not part of a W3C standard, often called "DOM 0". These
are found in browser-specific documentation, along with proprietary
features, like
http://developer.mozilla.org/en/Gecko_DOM_Reference
or
http://msdn.microsoft.com/en-us/libr...50(vs.85).aspx

Good luck
/L
--
Lasse Reichstein Nielsen
DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleDOM.html>
'Faith without judgement merely degrades the spirit divine.'
Closed Thread