Difference between revisions of "Document Object Model"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (→See also) |
Karl Jones (Talk | contribs) |
||
Line 12: | Line 12: | ||
* [[Ajax (programming)]] | * [[Ajax (programming)]] | ||
+ | * [[Cascading Style Sheets]] | ||
* [[Browser tools]] | * [[Browser tools]] | ||
* [[HTML]] | * [[HTML]] | ||
* [[Markup language]] | * [[Markup language]] | ||
* [[Root element]] | * [[Root element]] | ||
+ | * [[Selector]] | ||
* [[Tree structure]] | * [[Tree structure]] | ||
* [[Web browser]] | * [[Web browser]] |
Revision as of 09:02, 9 September 2015
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
- Ajax (programming)
- Cascading Style Sheets
- Browser tools
- HTML
- Markup language
- Root element
- Selector
- Tree structure
- Web browser
- XML
External Links
- Document Object Model @ Wikipedia