Document
The Document interface represents any web page loaded in the browser and serves as an entry point into the web page's content, which is the DOM tree.
The DOM tree includes elements such as <body> and <table>, among many others. It provides functionality globally to the document, like how to obtain the page's URL and create new elements in the document.
The Document interface describes the common properties and methods for any kind of document. Depending on the document's type (e.g. HTML, XML, SVG, …), a larger API is available: HTML documents, served with the "text/html" content type, also implement the HTMLDocument interface, whereas XML and SVG documents implement the XMLDocument interface.
Constructor
Document()-
Creates a new
Documentobject.
Properties
This interface also inherits from the Node and EventTarget interfaces.
Document.activeElementRead only-
Returns the
Elementthat currently has focus. Document.body-
Returns the
<body>or<frameset>node of the current document. Document.characterSetRead only-
Returns the character set being used by the document.
Document.childElementCountRead only-
Returns the number of child elements of the current document.
Document.childrenRead only-
Returns the child elements of the current document.
Document.compatModeRead only-
Indicates whether the document is rendered in quirks or strict mode.
Document.contentTypeRead only-
Returns the Content-Type from the MIME Header of the current document.
Document.currentScriptRead only-
Returns the
<script>element whose script is currently being processed and isn't a JavaScript module. Document.doctypeRead only-
Returns the Document Type Definition (DTD) of the current document.
Document.documentElementRead only-
Returns the
Elementthat is a direct child of the document. For HTML documents, this is normally theHTMLHtmlElementobject representing the document's<html>element. Document.documentURIRead only-
Returns the document location as a string.
Document.embedsRead only-
Returns an
HTMLCollectionof the embedded<embed>elements in the document. Document.firstElementChildRead only-
Returns the first child element of the current document.
Document.fonts-
Returns the
FontFaceSetinterface of the current document. Document.formsRead only-
Returns an
HTMLCollectionof the<form>elements in the document. Document.fullscreenElementRead only-
The element that's currently in full screen mode for this document.
Document.headRead only-
Returns the
<head>element of the current document. -
Returns a Boolean value indicating if the page is considered hidden or not.
Document.imagesRead only-
Returns an
HTMLCollectionof the images in the document. Document.implementationRead only-
Returns the DOM implementation associated with the current document.
Document.lastElementChildRead only-
Returns the last child element of the current document.
Document.linksRead only-
Returns an
HTMLCollectionof the hyperlinks in the document. Document.mozSyntheticDocument-
Returns
trueonly if this document is synthetic, such as a standalone image, video, audio file, or the like. Document.pictureInPictureElementRead only-
Returns the
Elementcurrently being presented in picture-in-picture mode in this document. Document.pictureInPictureEnabledRead only-
Returns true if the picture-in-picture feature is enabled.
Document.pluginsRead only-
Returns an
HTMLCollectionof the available plugins. Document.pointerLockElementRead only-
Returns the element set as the target for mouse events while the pointer is locked.
nullif lock is pending, pointer is unlocked, or if the target is in another document. Document.featurePolicyRead only-
Returns the
FeaturePolicyinterface which provides a simple API for introspecting the feature policies applied to a specific document. Document.scriptsRead only-
Returns an
HTMLCollectionof the<script>elements in the document. Document.scrollingElementRead only-
Returns a reference to the
Elementthat scrolls the document. Document.styleSheetsRead only-
Returns a
StyleSheetListofCSSStyleSheetobjects for stylesheets explicitly linked into, or embedded in a document. Document.timelineRead only-
Returns timeline as a special instance of
DocumentTimelinethat is automatically created on page load. Document.visibilityStateRead only-
Returns a
stringdenoting the visibility state of the document. Possible values arevisible,hidden,prerender, andunloaded.
Extensions for HTMLDocument
The Document interface for HTML documents inherits from the HTMLDocument interface or, since HTML5, is extended for such documents.
-
Returns a semicolon-separated list of the cookies for that document or sets a single cookie.
Document.defaultViewRead only-
Returns a reference to the window object.
Document.designMode-
Gets/sets the ability to edit the whole document.
Document.dir-
Gets/sets directionality (rtl/ltr) of the document.
Document.domain-
Gets/sets the domain of the current document.
Document.lastModifiedRead only-
Returns the date on which the document was last modified.
Document.locationRead only-
Returns the URI of the current document.
Document.readyStateRead only-
Returns loading status of the document.
Document.referrerRead only-
Returns the URI of the page that linked to this page.
Document.title-
Sets or gets the title of the current document.
Document.URLRead only-
Returns the document location as a string.
Event handlers
The Document interface is extended with additional event handlers defined in GlobalEventHandlers.
GlobalEventHandlers.onselectionchange-
Is an event handler representing the code to be called when the
selectionchangeevent is raised.
Deprecated properties
Document.alinkColor-
Returns or sets the color of active links in the document body.
Document.all-
Provides access to all elements in the document — it returns an
HTMLAllCollectionrooted at the document node. This is a legacy, non-standard property and should not be used. Document.anchorsRead only-
Returns a list of all of the anchors in the document.
Document.appletsRead only-
Returns an ordered list of the applets within a document.
Document.bgColor-
Gets/sets the background color of the current document.
Document.charsetRead only-
Alias of
Document.characterSet. Use this property instead. Document.fgColor-
Gets/sets the foreground color, or text color, of the current document.
Document.fullscreen-
truewhen the document is in fullscreen mode. Document.height-
Gets/sets the height of the current document.
Document.inputEncodingRead only-
Alias of
Document.characterSet. Use this property instead. Document.lastStyleSheetSetRead only-
Returns the name of the style sheet set that was last enabled. Has the value
nulluntil the style sheet is changed by setting the value ofselectedStyleSheetSet. Document.linkColor-
Gets/sets the color of hyperlinks in the document.
Document.preferredStyleSheetSetRead only-
Returns the preferred style sheet set as specified by the page author.
Document.rootElement-
Like
Document.documentElement, but only for<svg>root elements. Use this property instead. Document.selectedStyleSheetSet-
Returns which style sheet set is currently in use.
Document.styleSheetSetsRead only-
Returns a list of the style sheet sets available on the document.
Document.vlinkColor-
Gets/sets the color of visited hyperlinks.
Document.width-
Returns the width of the current document.
Document.xmlEncoding-
Returns the encoding as determined by the XML declaration.
Document.xmlStandalone-
Returns
trueif the XML declaration specifies the document to be standalone (e.g., An external part of the DTD affects the document's content), elsefalse. Document.xmlVersion-
Returns the version number as specified in the XML declaration or
"1.0"if the declaration is absent.
Methods
This interface also inherits from the Node and EventTarget interfaces.
Document.adoptNode()-
Adopt node from an external document.
Document.append()-
Inserts a set of
Nodeobjects orDOMStringobjects after the last child of the document. Document.captureEvents()-
See
Window.captureEvents. Document.caretPositionFromPoint()-
Returns a
CaretPositionobject containing the DOM node containing the caret, and caret's character offset within that node. Document.caretRangeFromPoint()-
Gets a
Rangeobject for the document fragment under the specified coordinates. Document.createAttribute()-
Creates a new
Attrobject and returns it. Document.createAttributeNS()-
Creates a new attribute node in a given namespace and returns it.
Document.createCDATASection()-
Creates a new CDATA node and returns it.
Document.createComment()-
Creates a new comment node and returns it.
Document.createDocumentFragment()-
Creates a new document fragment.
Document.createElement()-
Creates a new element with the given tag name.
Document.createElementNS()-
Creates a new element with the given tag name and namespace URI.
Document.createEntityReference()-
Creates a new entity reference object and returns it.
Document.createEvent()-
Creates an event object.
Document.createNodeIterator()-
Creates a
NodeIteratorobject. Document.createProcessingInstruction()-
Creates a new
ProcessingInstructionobject. Document.createRange()-
Creates a
Rangeobject. Document.createTextNode()-
Creates a text node.
Document.createTouch()-
Creates a
Touchobject. Document.createTouchList()-
Creates a
TouchListobject. Document.createTreeWalker()-
Creates a
TreeWalkerobject. Document.elementFromPoint()-
Returns the topmost element at the specified coordinates.
Document.elementsFromPoint()-
Returns an array of all elements at the specified coordinates.
Document.enableStyleSheetsForSet()-
Enables the style sheets for the specified style sheet set.
Document.exitPictureInPicture()-
Remove the video from the floating picture-in-picture window back to its original container.
Document.exitPointerLock()-
Release the pointer lock.
Document.getAnimations()-
Returns an array of all
Animationobjects currently in effect, whose target elements are descendants of thedocument. Document.getBoxQuads()-
Returns a list of
DOMQuadobjects representing the CSS fragments of the node. Document.getElementById()-
Returns an object reference to the identified element.
Document.getElementsByClassName()-
Returns a list of elements with the given class name.
Document.getElementsByTagName()-
Returns a list of elements with the given tag name.
Document.getElementsByTagNameNS()-
Returns a list of elements with the given tag name and namespace.
Document.getSelection()-
Returns a
Selectionobject representing the range of text selected by the user, or the current position of the caret. Document.hasStorageAccess()-
Returns a
Promisethat resolves with a boolean value indicating whether the document has access to its first-party storage. Document.importNode()-
Returns a clone of a node from an external document.
Document.normalizeDocument()-
Replaces entities, normalizes text nodes, etc.
Document.prepend()-
Inserts a set of
Nodeobjects orDOMStringobjects before the first child of the document. Document.querySelector()-
Returns the first Element node within the document, in document order, that matches the specified selectors.
Document.querySelectorAll()-
Returns a list of all the Element nodes within the document that match the specified selectors.
Document.releaseCapture()-
Releases the current mouse capture if it's on an element in this document.
Document.releaseEvents()Document.replaceChildren()-
Replaces the existing children of a document with a specified new set of children.
Document.requestStorageAccess()-
Returns a
Promisethat resolves if the access to first-party storage was granted, and rejects if access was denied. Document.mozSetImageElement()-
Allows you to change the element being used as the background image for a specified element ID.
The Document interface is extended with the XPathEvaluator interface:
Document.createExpression()-
Compiles an
XPathExpressionwhich can then be used for (repeated) evaluations. Document.createNSResolver()-
Creates an
XPathNSResolverobject. Document.evaluate()-
Evaluates an XPath expression.
Extension for HTML documents
The Document interface for HTML documents inherit from the HTMLDocument interface or, since HTML5, is extended for such documents:
Document.clear()-
In majority of modern browsers, including recent versions of Firefox and Internet Explorer, this method does nothing.
Document.close()-
Closes a document stream for writing.
Document.execCommand()-
On an editable document, executes a formatting command.
Document.getElementsByName()-
Returns a list of elements with the given name.
Document.hasFocus()-
Returns
trueif the focus is currently located anywhere inside the specified document. Document.open()-
Opens a document stream for writing.
Document.queryCommandEnabled()-
Returns true if the formatting command can be executed on the current range.
Document.queryCommandIndeterm()-
Returns true if the formatting command is in an indeterminate state on the current range.
Document.queryCommandState()-
Returns true if the formatting command has been executed on the current range.
Document.queryCommandSupported()-
Returns true if the formatting command is supported on the current range.
Document.queryCommandValue()-
Returns the current value of the current range for a formatting command.
Document.write()-
Writes text in a document.
Document.writeln()-
Writes a line of text in a document.
Events
Listen to these events using addEventListener() or by assigning an event listener to the oneventname property of this interface.
afterscriptexecute-
Fired when a static
<script>element finishes executing its script beforescriptexecute-
Fired when a static
<script>is about to start executing. scroll-
Fired when the document view or an element has been scrolled. Also available via the
onscrollproperty. visibilitychange-
Fired when the content of a tab has become visible or has been hidden.
wheel-
Fired when the user rotates a wheel button on a pointing device (typically a mouse). Also available via the
onwheelproperty.
Animation events
animationcancel-
Fired when an animation unexpectedly aborts. Also available via the
onanimationcancelproperty. animationend-
Fired when an animation has completed normally. Also available via the
onanimationendproperty. animationiteration-
Fired when an animation iteration has completed. Also available via the
onanimationiterationproperty. animationstart-
Fired when an animation starts. Also available via the
onanimationstartproperty.
Clipboard events
Drag & drop events
drag-
Fired every few hundred milliseconds as an element or text selection is being dragged by the user. Also available via the
ondragproperty. dragend-
Fired when a drag operation is being ended (by releasing a mouse button or hitting the escape key). Also available via the
ondragendproperty. dragenter-
Fired when a dragged element or text selection enters a valid drop target. Also available via the
ondragenterproperty. dragleave-
Fired when a dragged element or text selection leaves a valid drop target. Also available via the
ondragleaveproperty. dragover-
Fired when an element or text selection is being dragged over a valid drop target (every few hundred milliseconds). Also available via the
ondragoverproperty. dragstart-
Fired when the user starts dragging an element or text selection. Also available via the
ondragstartproperty. drop-
Fired when an element or text selection is dropped on a valid drop target. Also available via the
ondropproperty.
Fullscreen events
fullscreenchange-
Fired when the
Documenttransitions into or out of fullscreen mode. fullscreenerror-
Fired if an error occurs while attempting to switch into or out of fullscreen mode.
Keyboard events
Load & unload events
DOMContentLoaded-
Fired when the document has been completely loaded and parsed, without waiting for stylesheets, images, and subframes to finish loading.
readystatechange-
Fired when the
readyStateattribute of a document has changed.
Pointer events
gotpointercapture-
Fired when an element captures a pointer using
setPointerCapture(). Also available via theongotpointercaptureproperty. lostpointercapture-
Fired when a captured pointer is released. Also available via the
onlostpointercaptureproperty. pointercancel-
Fired when a pointer event is canceled. Also available via the
onpointercancelproperty. pointerdown-
Fired when a pointer becomes active. Also available via the
onpointerdownproperty. pointerenter-
Fired when a pointer is moved into the hit test boundaries of an element or one of its descendants. Also available via the
onpointerenterproperty. pointerleave-
Fired when a pointer is moved out of the hit test boundaries of an element. Also available via the
onpointerleaveproperty. pointerlockchange-
Fired when the pointer is locked/unlocked. Also available via the
onpointerlockchangeproperty. pointerlockerror-
Fired when locking the pointer failed. Also available via the
onpointerlockerrorproperty. pointermove-
Fired when a pointer changes coordinates. Also available via the
onpointermoveproperty. pointerout-
Fired when a pointer is moved out of the hit test boundaries of an element (among other reasons). Also available via the
onpointeroutproperty. pointerover-
Fired when a pointer is moved into an element's hit test boundaries. Also available via the
onpointeroverproperty. pointerup-
Fired when a pointer is no longer active. Also available via the
onpointerupproperty.
Selection events
selectionchange-
Fired when the current text selection on a document is changed. Also available via the
onselectionchangeproperty. selectstart-
Fired when the user begins a new selection. Also available via the
onselectstartproperty.
Touch events
touchcancel-
Fired when one or more touch points have been disrupted in an implementation-specific manner (for example, too many touch points are created). Also available via the
ontouchcancelproperty. touchend-
Fired when one or more touch points are removed from the touch surface. Also available via the
ontouchendproperty touchmove-
Fired when one or more touch points are moved along the touch surface. Also available via the
ontouchmoveproperty touchstart-
Fired when one or more touch points are placed on the touch surface. Also available via the
ontouchstartproperty
Transition events
transitioncancel-
Fired when a CSS transition is canceled. Also available via the
ontransitioncancelproperty. transitionend-
Fired when a CSS transition has completed. Also available via the
ontransitionendproperty. transitionrun-
Fired when a CSS transition is first created. Also available via the
ontransitionrunproperty. transitionstart-
Fired when a CSS transition has actually started. Also available via the
ontransitionstartproperty.
Non-standard extensions
Non-standard: This feature is non-standard and is not on a standards track. Do not use it on production sites facing the Web: it will not work for every user. There may also be large incompatibilities between implementations and the behavior may change in the future.
Firefox notes
Firefox defines some non-standard methods:
Document.execCommandShowHelp()-
This method never did anything and always threw an exception, so it was removed in Gecko 14.0 (Firefox 14.0 / Thunderbird 14.0 / SeaMonkey 2.11).
Document.getBoxObjectFor()-
Use the
Element.getBoundingClientRect()method instead. Document.loadOverlay()-
Loads a XUL overlay dynamically. This only works in XUL documents.
Document.queryCommandText()-
This method never did anything but throw an exception, and was removed in Gecko 14 (Firefox 14 / Thunderbird 14 / SeaMonkey 2.11).
Internet Explorer notes
Microsoft defines some non-standard properties:
Document.fileSize*-
Returns size in bytes of the document. Starting with Internet Explorer 11, that property is no longer supported. See MSDN.
Specifications
Browser compatibility
BCD tables only load in the browser