spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / javascript / column40


The Document Object Model (DOM), Part I (3)

Developer News
News Flash: Adobe Has iPhone Workaround
Adobe's Flash 10.1 Goes Mobile (Minus iPhone)
A Salute to Visionary CEOs

The Object's Properties

The Document Object Model provides a set of properties that you can use to navigate, access, and update the document tree with. The following table shows the read-only properties:

DOM's PropertyReturnsComments
firstChildThe first child node.An [object]. All children are included in childNodes collection.
lastChildThe last child node.An [object]. All children are included in childNodes collection.
nextSiblingThe next child of the node's parent.An [object].
nodeNameThe HTML Tag.Examples: P, FONT, UL.
nodeTypeWhether the node is a tag, text, or attribute.Returns 1 for tag, 2 for attribute, and 3 for text.
parentNodeA reference to the parent node.An [object].
previousSiblingA reference to the previous child of the node's parent.An [object].
specifiedWhether an attribute value is set.Boolean

The following table shows the read-write properties:

DOM's PropertyReturnsComments
dataThe value of a text node.A string. Returns undefined for all other nodes. Can be set as well.
nodeValueThe value of a text node.A string. Returns null for all other nodes. Can be set as well.

And finally, here are the collections defined for the DOM:

DOM's PropertyReturnsComments
attributesA collection of the node's attributes.Access by name. Example:attributes.id.
childNodesA collection of the node's children.Access by index. Example:childNodes[2].

http://www.internet.com

Produced by Yehuda Shiran and Tomer Shiran

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Building a Banking Application Home Page with OOP · Mixing Scripting Languages · Review: phpFox, a Social Networking CMS with all the Bells and Whistles
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Enterprise 2.0: Social Networking in the Cloud · BroadSoft Marketplace Hastens Pace of Telephony Innovation · Review: HTC Hero for Sprint


Created: May 31, 1999
Revised: May 31, 1999

URL: http://www.webreference.com/js/column40/properties.html