• Web
  • Images
  • Video
  • Wiki
  • News
  • More
    • ZapMeta FAQ
    • Settings
    • Advanced
×

Document Object Model source: en.wikipedia.org/wiki/Document_Object_Model

Convention for representing and interacting with objects in HTML, XHTML and XML documents
This article includes a list of references, but its sources remain unclear because it has insufficient inline citations. Please help to improve this article by introducing more precise citations. (August 2010) (Learn how and when to remove this template message)
Document Object Model
DOM-model.svg
Example of DOM hierarchy in an HTML document
First publishedOctober 1, 1998; 21 years ago (1998-10-01)
Latest versionDOM4[1]
November 19, 2015; 4 years ago (2015-11-19)
OrganizationWorld Wide Web Consortium, WHATWG
Base standardsWHATWG DOM Living Standard
W3C DOM4
AbbreviationDOM
HTML
  • Dynamic HTML
  • HTML5
    • audio
    • canvas
    • video
  • XHTML
    • Basic
    • Mobile Profile
    • C-HTML
  • HTML element
    • span and div
  • HTML attribute
  • HTML frame
  • HTML editor
  • Character encodings
    • Unicode
  • Language code
  • Document Object Model
  • Browser Object Model
  • Style sheets
    • CSS
  • Font family
  • Web colors
  • HTML scripting
  • JavaScript
    • WebGL
    • WebCL
  • W3C
    • Validator
  • WHATWG
  • Quirks mode
  • Web storage
  • Rendering engine
Comparisons
  • Document markup languages
  • HTML support
  • XHTML
    • 1.1

The Document Object Model (DOM) is a cross-platform and language-independent interface that treats an XML or HTML document as a tree structure wherein each node is an object representing a part of the document. The DOM represents a document with a logical tree. Each branch of the tree ends in a node, and each node contains objects. DOM methods allow programmatic access to the tree; with them one can change the structure, style or content of a document. Nodes can have event handlers attached to them. Once an event is triggered, the event handlers get executed.[2]

The principal standardization of the DOM was handled by the World Wide Web Consortium, which last developed a recommendation in 2004. WHATWG took over development of the standard, publishing it as a living document. The W3C now publishes stable snapshots of the WHATWG standard.

Contents

  • 1 History
  • 2 Standards
  • 3 Applications
    • 3.1 Web browsers
    • 3.2 JavaScript
  • 4 Implementations
    • 4.1 Layout engines
    • 4.2 Libraries
  • 5 References
  • 6 Sources
  • 7 External links

History[edit]

The history of the Document Object Model is intertwined with the history of the "browser wars" of the late 1990s between Netscape Navigator and Microsoft Internet Explorer, as well as with that of JavaScript and JScript, the first scripting languages to be widely implemented in the JavaScript engines of web browsers.

JavaScript was released by Netscape Communications in 1995 within Netscape Navigator 2.0. Netscape's competitor, Microsoft, released Internet Explorer 3.0 the following year with a reimplementation of JavaScript called JScript. JavaScript and JScript let web developers create web pages with client-side interactivity. The limited facilities for detecting user-generated events and modifying the HTML document in the first generation of these languages eventually became known as "DOM Level 0" or "Legacy DOM." No independent standard was developed for DOM Level 0, but it was partly described in the specifications for HTML 4.

Legacy DOM was limited in the kinds of elements that could be accessed. Form, link and image elements could be referenced with a hierarchical name that began with the root document object. A hierarchical name could make use of either the names or the sequential index of the traversed elements. For example, a form input element could be accessed as either document.formName.inputName or document.forms[0].elements[0].

The Legacy DOM enabled client-side form validation and the popular "rollover" effect.

In 1997, Netscape and Microsoft released version 4.0 of Netscape Navigator and Internet Explorer respectively, adding support for Dynamic HTML (DHTML) functionality enabling changes to a loaded HTML document. DHTML required extensions to the rudimentary document object that was available in the Legacy DOM implementations. Although the Legacy DOM implementations were largely compatible since JScript was based on JavaScript, the DHTML DOM extensions were developed in parallel by each browser maker and remained incompatible. These versions of the DOM became known as the "Intermediate DOM."

After the standardization of ECMAScript, the W3C DOM Working Group began drafting a standard DOM specification. The completed specification, known as "DOM Level 1", became a W3C Recommendation in late 1998. By 2005, large parts of W3C DOM were well-supported by common ECMAScript-enabled browsers, including Microsoft Internet Explorer version 6 (from 2001), Opera, Safari and Gecko-based browsers (like Mozilla, Firefox, SeaMonkey and Camino).

Standards[edit]

The W3C DOM Working Group published its final recommendation and subsequently disbanded in 2004. Development efforts migrated to the WHATWG, which continues to maintain a living standard.[3] In 2009, the Web Applications group reorganized DOM activities at the W3C.[4] In 2013, due to a lack of progress and the impending release of HTML5, the DOM Level 4 specification was reassigned to the HTML Working Group to expedite its completion.[5] Meanwhile, in 2015, the Web Applications group was disbanded and DOM stewardship passed to the Web Platform group.[6] Beginning with the publication of DOM Level 4 in 2015, the W3C creates new recommendations based on snapshots of the WHATWG standard.

  • DOM Level 1 provided a complete model for an entire HTML or XML document, including the means to change any portion of the document.
  • DOM Level 2 was published in late 2000. It introduced the getElementById function as well as an event model and support for XML namespaces and CSS.
  • DOM Level 3, published in April 2004, added support for XPath and keyboard event handling, as well as an interface for serializing documents as XML.
  • DOM Level 4 was published in 2015. It is a snapshot of the WHATWG living standard.[7]

Applications[edit]

Web browsers[edit]

To render a document such as a HTML page, most web browsers use an internal model similar to the DOM. The nodes of every document are organized in a tree structure, called the DOM tree, with the topmost node named as "Document object". When an HTML page is rendered in browsers, the browser downloads the HTML into local memory and automatically parses it to display the page on screen.[8]

JavaScript[edit]

When a web page is loaded, the browser creates a Document Object Model of the page, which is an object oriented representation of an HTML document that acts as an interface between JavaScript and the document itself. This allows the creation of dynamic web pages,[9] because within a page JavaScript can:

  • add, change, and remove any of the HTML elements and attributes
  • change any of the CSS styles
  • react to all the existing events
  • create new events

Implementations[edit]

Because the DOM supports navigation in any direction (e.g., parent and previous sibling) and allows for arbitrary modifications, an implementation must at least buffer the document that has been read so far (or some parsed form of it).[10]

Layout engines[edit]

See also: Comparison of layout engines (Document Object Model)

Web browsers rely on layout engines to parse HTML into a DOM. Some layout engines, such as Trident/MSHTML, are associated primarily or exclusively with a particular browser, such as Internet Explorer. Others, including Blink, WebKit, and Gecko, are shared by a number of browsers, such as Google Chrome, Opera, Safari, and Firefox. The different layout engines implement the DOM standards to varying degrees of compliance.

Libraries[edit]

DOM implementations:

  • libxml2
  • MSXML
  • Xerces is a collection of DOM implementations written in C++, Java and Perl
  • XML for <SCRIPT> is a JavaScript-based DOM implementation[11]
  • PHP.Gt DOM is a server-side DOM implementation based on libxml2 and brings DOM level 4 compatibility[12] to the PHP programming language
  • Domino is a Server-side (Node.js) DOM implementation based on Mozilla's dom.js. Domino is used in the MediaWiki stack with Visual Editor.

APIs that expose DOM implementations:

  • JAXP (Java API for XML Processing) is an API for accessing DOM providers
  • Lazarus (Free Pascal IDE) contains two variants of the DOM - with UTF-8 and ANSI format

Inspection tools:

  • DOM Inspector is a web developer tool

References[edit]

  1. ^ All versioning refers to W3C DOM only.
  2. ^ "Document Object Model (DOM)". http://www.w3.org/: W3C. Retrieved 2012-01-12. The Document Object Model is a platform- and language-neutral interface that will allow programs and scripts to dynamically access and update the content, structure and style of documents.
  3. ^ "DOM Standard". Retrieved 23 September 2016.
  4. ^ "W3C Document Object Model". Retrieved 23 September 2016.
  5. ^ (plh@w3.org), Philippe Le Hegaret. "New Charter for the HTML Working Group from Philippe Le Hegaret on 2013-09-30 (public-html-admin@w3.org from September 2013)". Retrieved 23 September 2016.
  6. ^ "PubStatus - WEBAPPS". Retrieved 23 September 2016.
  7. ^ "W3C DOM4". Retrieved 23 September 2016.
  8. ^ "A Survey of Techniques for Improving Efficiency of Mobile Web Browsing", Concurrency and Computation, 2018
  9. ^ "JavaScript HTML DOM". Retrieved 23 September 2016.
  10. ^ Kogent Solutions Inc. (2008). Ajax Black Book, New Edition (With Cd). Dreamtech Press. p. 40. ISBN 978-8177228380.
  11. ^ "XML for <SCRIPT> Cross Platform XML Parser in JavaScript". Retrieved 23 September 2016.
  12. ^ "The modern DOM API for PHP 7 projects".

Sources[edit]

  • Flanagan, David (2006). JavaScript: The Definitive Guide. O'Reilly & Associates. pp. 312–313. ISBN 0-596-10199-6.
  • Koch, Peter-Paul (May 14, 2001). "The Document Object Model: an Introduction". Digital Web Magazine. Archived from the original on April 17, 2018. Retrieved January 10, 2009.
  • Le Hégaret, Philippe (2002). "The W3C Document Object Model (DOM)". World Wide Web Consortium. Retrieved January 10, 2009.
  • Guisset, Fabian. "What does each DOM Level bring?". Mozilla Developer Center. Mozilla Project. Retrieved January 10, 2009.

External links[edit]

Wikimedia Commons has media related to document object models.
  • DOM Living Standard by the WHATWG
  • Original W3C DOM hub by the W3C DOM Working Group (outdated)
  • Web Platform Working Group (current steward of W3C DOM)
  • v
  • t
  • e
JavaScript
Code analysis
  • ESLint
  • JSHint
  • JSLint
Transcompilers
  • Babel.js
  • CoffeeScript
  • LiveScript
  • Dart
  • Emscripten
  • Google Closure Compiler
  • Google Web Toolkit
  • Morfik
  • TypeScript
  • AtScript
  • Opa
  • Nim
  • Haxe
  • ClojureScript
  • WebSharper
  • PureScript
  • Reason
  • Elm
Concepts
  • Client-side
  • JavaScript library
  • JavaScript syntax
  • Unobtrusive JavaScript
Debuggers
  • Firebug
  • Komodo IDE
  • Microsoft Script Debugger
  • Microsoft Script Editor
  • Opera Dragonfly
  • Web Inspector
Doc generators
  • JSDoc
Editors (comparison)
  • Ace
    • Cloud9 IDE
  • Atom
  • CodeMirror
    • Light Table
    • Brackets
  • Koding
  • PhpStorm
  • Orion
  • Visual Studio
    • Visual Studio Express
  • Visual Studio Code
  • Visual Studio Team Services
Engines
  • Comparison of engines
    • DOM support
  • List of ECMAScript engines
Frameworks
  • Comparison of JavaScript frameworks
  • List of JavaScript libraries
Related technologies
  • Cascading Style Sheets
  • Document Object Model
  • HTML
  • Dynamic HTML
  • Ajax
  • JSON
  • WebAssembly
  • asm.js
Package managers
  • npm
Application Bundlers
  • Webpack
Server-side
  • Active Server Pages
  • CommonJS
  • Deno
  • JSGI
  • Node.js
  • Wakanda
Unit testing
  • Jasmine
  • Mocha
  • QUnit
  • List of JavaScript unit testing frameworks
  • Jest
People
  • Douglas Crockford
  • Brendan Eich
  • John Resig
  • v
  • t
  • e
Web browsers
Features · standards · protocols
Features
  • Bookmarks
  • Extensions
  • Privacy mode
  • Sync
Web standards
  • HTML
    • v5
  • CSS
  • DOM
  • JavaScript
    • IndexedDB
    • Web storage
    • WebAssembly
    • WebGL
Protocols
  • HTTP
    • v2
    • v3
    • Cookies
    • Encryption
  • OCSP
  • WebRTC
  • WebSocket
Active
Blink-based
  • Avast Secure Browser
  • Beaker
  • Blisk
  • Brave
  • Chrome
  • Chromium
  • Coc Coc
  • Dragon
  • Epic
  • Falkon
  • Kinza
  • Maxthon
  • Opera
  • Otter
  • Puffin
  • SalamWeb
  • Samsung Internet
  • Silk
  • Sleipnir
  • Sputnik
  • SRWare
  • Torch
  • UC
  • Vivaldi
  • Whale
  • Yandex
Gecko-based
  • Firefox
  • GNU IceCat
  • IceDragon
  • K-Meleon
  • PirateBrowser
  • SeaMonkey
  • TenFourFox
  • Tor
  • Waterfox
WebKit-based
  • Dolphin
  • Dooble
  • GNOME Web
  • iCab
  • Konqueror
  • Midori
  • Safari
  • surf
Other
  • 360
  • Avant
  • Basilisk
  • Cake Browser
  • CM Browser
  • Edge
  • eww
  • Internet Explorer
  • Links
  • Lunascape
  • Lynx
  • NetFront
  • NetSurf
  • Pale Moon
  • QQ browser
  • qutebrowser
  • SlimBrowser
  • w3m
Discontinued
Gecko-based
  • Beonex Communicator
  • Camino
  • Classilla
  • Conkeror
  • Galeon
  • Ghostzilla
  • Kazehakase
  • Kylo
  • Lotus
  • MicroB
  • Minimo
  • Mozilla suite
  • Pogo
  • Strata
  • Swiftfox
  • Swiftweasel
  • Timberwolf
  • xB
Trident-based
  • AOL
  • Deepnet
  • GreenBrowser
  • MediaBrowser
  • MenuBox
  • NeoPlanet
  • NetCaptor
  • SpaceTime
  • UltraBrowser
  • WebbIE
  • ZAC
WebKit-based
  • Arora
  • BOLT
  • Opera Coast
  • Flock
  • Fluid
  • Google TV
  • Iris
  • Mercury
  • OmniWeb
  • Origyn
  • QtWeb
  • rekonq
  • Rockmelt
  • Shiira
  • Steel
  • Browser for Symbian
  • Uzbl
  • WebPositive
  • xombrero
Other
  • abaco
  • Amaya
  • Arachne
  • Arena
  • Blazer
  • Charon
  • Deepfish
  • Dillo
  • ELinks
  • Gazelle
  • HotJava
  • IBM Home Page Reader
  • IBM WebExplorer
  • IBrowse
  • KidZui
  • Line Mode
  • Mosaic
  • MSN TV
  • NetPositive
  • Netscape
  • Skweezer
  • Skyfire
  • Teashark
  • ThunderHawk
  • Vision
  • WinWAP
  • WorldWideWeb
  • Category
  • Comparisons
  • List
  • v
  • t
  • e
World Wide Web Consortium (W3C)
Products and
standards
Recommendations
  • ActivityPub
  • ARIA
  • Canonical XML
  • CDF
  • CSS
  • DOM
  • Geolocation API
  • HTML (HTML5)
  • ITS
  • JSON-LD
  • Linked Data Notifications
  • MathML
  • Micropub
  • OWL
  • PLS
  • RDF
  • RDF Schema
  • SISR
  • SKOS
  • SMIL
  • SOAP
  • SRGS
  • SRI
  • SSML
  • SVG
  • SCXML
  • SHACL
  • SPARQL
  • Timed text
  • VoiceXML
  • Web storage
  • WSDL
  • Webmention
  • WebSub
  • XForms
  • XHTML
  • XHTML+RDFa
  • XInclude
  • XLink
  • XML
  • XML Base
  • XML Encryption
  • XML Events
  • XML Information Set
  • XML namespace
  • XML Schema
  • XML Signature
  • XOP
  • XPath
  • XPath 2.0
  • XPointer
  • XProc
  • XQuery
  • XSL
  • XSL-FO
  • XSLT (elements)
Notes
  • IndieAuth
  • JF2
  • Post Type Discovery
  • XAdES
  • XHTML+SMIL
  • XUP
Working drafts
  • CCXML
  • CURIE
  • EME
  • InkML
  • MSE
  • RIF
  • SMIL Timesheets
  • sXBL
  • XFDL
  • XFrames
  • XBL
  • XMLHttpRequest
Guidelines
  • Web Content Accessibility Guidelines
Initiative
  • Multimodal Interaction Activity (MMI)
  • Markup Validation Service
  • Web Accessibility Initiative
  • WebPlatform
Deprecated
  • C-HTML
  • HDML
  • JSSS
  • PGML
  • VML
  • XHTML+MathML+SVG
Obsoleted
  • P3P
Organizations
  • Advisory Committee (AC)
  • World Wide Web Foundation
Elected groups
  • Advisory Board (AB)
Working groups
  • CSS
  • Geolocation
  • Social Web
  • SVG
  • Web Hypertext Application Technology (WHATWG)
  • Web Platform
Community groups
  • Web Incubator Community Group (WICG)
Closed groups
  • Device Description (DDWG)
  • HTML
Software
  • CERN httpd
  • Libwww
Browsers
  • Line Mode (1990–)
  • Arena (1993–98)
  • Agora (1994–97)
  • Argo (1994–97)
  • Amaya (browser/editor, 1996–2012)
Conferences
  • International World Wide Web Conference (IW3C)
    • Steering Committee (IW3C2)
    • First conference ("WWW1", 1994)
  • v
  • t
  • e
Web interfaces
Server-side
Protocols
  • HTTP
  • CGI
  • SCGI
  • FCGI
  • AJP
  • WSRP
  • WebSocket
Server APIs
  • C NSAPI
  • C ASAPI
  • C ISAPI
  • COM ASP
  • Java servlet
    • container
  • CLI OWIN
  • ASP.NET Handler
  • Python WSGI
  • Ruby Rack
  • JavaScript JSGI
  • Perl PSGI
  • Lua WSAPI
  • Portlet
    • container
Apache modules
  • mod_include
  • mod_jk
  • mod_lisp
  • mod_mono
  • mod_parrot
  • mod_perl
  • mod_php
  • mod_proxy
  • mod_python
  • mod_wsgi
  • mod_ruby
  • Phusion Passenger
Topics
  • Web resource vs. Web service
  • Open API
  • Webhook
  • Application server
    • comparison
  • Scripting
Client-side
Browser APIs
  • C NPAPI
    • LiveConnect
    • XPConnect
  • C NPRuntime
  • C PPAPI
    • NaCl
  • ActiveX
  • BHO
  • XBAP
Web APIs
W3C
  • Audio
  • Canvas
  • CORS
  • DOM
  • DOM events
  • EME
  • File
  • Geolocation
  • IndexedDB
  • MSE
  • SSE
  • SVG
  • Video
  • WebAuthn
  • WebRTC
  • WebSocket
  • Web messaging
  • Web storage
  • Web worker
  • XMLHttpRequest
  • WebAssembly
Khronos
  • WebCL
  • WebGL
Others
  • Gears
  • Web SQL Database (formerly W3C)
  • WebUSB
Topics
  • Ajax and Remote scripting vs. DHTML
  • Mashup
  • Web IDL
  • Scripting
Topics
  • Dynamic web page
  • Web standards
  • Rich web application
  • Web API security
  • Web application
  • Web framework
Authority control Edit this at Wikidata
  • GND: 4680714-7
  • LCCN: sh2006005140
  • About us-
  • Copyright-
  • Disclaimer-
  • Privacy-
  • Contact
  • © 2019 ZapMeta-
  • Follow ZapMeta on Google+