Difference between revisions of "Document Object Model"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) |
Karl Jones (Talk | contribs) |
||
Line 29: | Line 29: | ||
* [https://en.wikipedia.org/wiki/Document_Object_Model Document Object Model] @ Wikipedia | * [https://en.wikipedia.org/wiki/Document_Object_Model Document Object Model] @ Wikipedia | ||
+ | [[Category:Computer science]] | ||
[[Category:Web design and development]] | [[Category:Web design and development]] |
Revision as of 04:25, 5 April 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
- Ajax (programming)
- Application programming interface {API)
- Cascading Style Sheets
- Browser tools
- HTML
- Markup language
- Node (computer science)
- Object (computer science)
- Root element
- Selector
- Tree structure
- Web browser
- XML
External Links
- Document Object Model @ Wikipedia