Difference between revisions of "Document Object Model"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
Line 1: Line 1:
 
The '''Document Object Model''' ('''DOM''') is a [[cross-platform]] and [[language-independent]] convention for representing and interacting with [[Object (computer science)|objects]] in [[HTML]], [[XHTML]], and [[XML]] documents.
 
The '''Document Object Model''' ('''DOM''') is a [[cross-platform]] and [[language-independent]] convention for representing and interacting with [[Object (computer science)|objects]] in [[HTML]], [[XHTML]], and [[XML]] documents.
 
(TO DO: expand, organize, cross-reference, illustrate.)
 
  
 
== Description ==
 
== Description ==

Revision as of 07:52, 4 February 2016

The Document Object Model (DOM) is a cross-platform and language-independent convention for representing and interacting with objects in HTML, XHTML, and XML documents.

Description

The nodes of every document are organized in a tree structure, called the DOM tree.

Objects in the DOM tree may be addressed and manipulated by using methods on the objects.

The public interface of a DOM is specified in its application programming interface (API).

See also

External Links