| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/en-US/docs/Web/API/Document | [Back] [Original] |
Get to know MDN better
This feature is well established and works across many devices and browser versions. Its been available across browsers since July 2015.
* Some parts of this feature may have varying levels of support.
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.
Document()Creates a new Document object.
This interface also inherits from the Node and EventTarget interfaces.
Document.activeElement Read onlyReturns the Element that currently has focus.
Document.activeViewTransition Read onlyReturns a ViewTransition instance representing the view transition currently active on the document, or null if there is no active view transition.
Document.adoptedStyleSheetsAdd an array of constructed stylesheets to be used by the document. These stylesheets may also be shared with shadow DOM subtrees of the same document.
Document.bodyReturns the <body> or <frameset> node of the current document.
Document.characterSet Read onlyReturns the character set being used by the document.
Document.childElementCount Read onlyReturns the number of child elements of the current document.
Document.children Read onlyReturns the child elements of the current document.
Document.compatMode Read onlyIndicates whether the document is rendered in quirks or strict mode.
Document.contentType Read onlyReturns the Content-Type from the MIME Header of the current document.
Document.currentScript Read onlyReturns the <script> element whose script is currently being processed and isn't a JavaScript module.
Document.customElementRegistry Read onlyThe CustomElementRegistry object associated with this document, or null if one has not been set.
Document.doctype Read onlyReturns the Document Type Definition (DTD) of the current document.
Document.documentElement Read onlyReturns the Element that is a direct child of the document. For HTML documents, this is normally the HTMLHtmlElement object representing the document's <html> element.
Document.documentURI Read onlyReturns the document location as a string.
Document.embeds Read onlyReturns an HTMLCollection of the embedded <embed> elements in the document.
Document.featurePolicy Read only Returns the FeaturePolicy interface with the feature policies applied to the document.
Document.firstElementChild Read onlyReturns the first child element of the current document.
Document.fontsReturns the FontFaceSet interface of the current document.
Document.forms Read onlyReturns an HTMLCollection of the <form> elements in the document.
Document.fragmentDirective Read onlyReturns the FragmentDirective for the current document.
Document.fullscreenElement Read onlyThe element that's currently in full screen mode for this document.
Document.head Read onlyReturns the <head> element of the current document.
Document.hidden Read onlyReturns a Boolean value indicating if the page is considered hidden or not.
Document.images Read onlyReturns an HTMLCollection of the images in the document.
Document.implementation Read onlyReturns the DOM implementation associated with the current document.
Document.lastElementChild Read onlyReturns the last child element of the current document.
Document.links Read onlyReturns an HTMLCollection of the hyperlinks in the document.
Document.pictureInPictureElement Read onlyReturns the Element currently being presented in picture-in-picture mode in this document.
Document.pictureInPictureEnabled Read onlyReturns true if the picture-in-picture feature is enabled.
Document.plugins Read onlyReturns an HTMLCollection of the available plugins.
Document.pointerLockElement Read onlyReturns the element set as the target for mouse events while the pointer is locked. null if lock is pending, pointer is unlocked, or if the target is in another document.
Document.prerendering Read only Returns a boolean that indicates whether the document is currently in the process of prerendering, as initiated via the Speculation Rules API.
Document.scripts Read onlyReturns an HTMLCollection of the <script> elements in the document.
Document.scrollingElement Read onlyReturns a reference to the Element that scrolls the document.
Document.styleSheets Read onlyReturns a StyleSheetList of CSSStyleSheet objects for stylesheets explicitly linked into, or embedded in a document.
Document.timeline Read onlyReturns timeline as a special instance of DocumentTimeline that is automatically created on page load.
Document.visibilityState Read onlyReturns a string denoting the visibility state of the document. Possible values are visible, hidden, and unloaded.
The Document interface for HTML documents inherits from the HTMLDocument interface or is extended for such documents.
Document.cookieReturns a semicolon-separated list of the cookies for that document or sets a single cookie.
Document.defaultView Read onlyReturns a reference to the window object.
Document.designModeGets/sets the ability to edit the whole document.
Document.dirGets/sets directionality (rtl/ltr) of the document.
Document.fullscreenEnabled Read onlyIndicates whether fullscreen mode is available.
Document.lastModified Read onlyReturns the date on which the document was last modified.
Document.location Read onlyReturns the URI of the current document.
Document.readyState Read onlyReturns loading status of the document.
Document.referrer Read onlyReturns the URI of the page that linked to this page.
Document.titleSets or gets the title of the current document.
Document.URL Read onlyReturns the document location as a string.
Some elements in the document are also exposed as properties:
<embed>, <form>, <iframe>, <img>, and <object> element, its name (if non-empty) is exposed.
For example, if the document contains <form name="my_form">, then document["my_form"] (and its equivalent document.my_form) returns a reference to that element.<object> element, its id (if non-empty) is exposed.<img> element with non-empty name, its id (if non-empty) is exposed.If a property corresponds to a single element, that element is directly returned. If that single element is an iframe, then its contentWindow is returned instead. If the property corresponds to multiple elements, then an HTMLCollection is returned containing all of them.
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 HTMLAllCollection rooted at the document node. This is a legacy, non-standard property and should not be used.
Document.anchors Read onlyReturns a list of all of the anchors in the document.
Document.applets Read onlyReturns an empty HTMLCollection. Legacy property that used to return the list of applets within a document.
Document.bgColor Gets/sets the background color of the current document.
Document.charset Read onlyAlias of Document.characterSet. Use this property instead.
Document.domain Gets/sets the domain of the current document.
Document.fgColor Gets/sets the foreground color, or text color, of the current document.
Document.fullscreen Returns true when the document is in fullscreen mode.
Document.inputEncoding Read onlyAlias of Document.characterSet. Use this property instead.
Document.lastStyleSheetSet Read only Returns the name of the style sheet set that was last enabled. Has the value null until the style sheet is changed by setting the value of selectedStyleSheetSet.
Document.linkColor Gets/sets the color of hyperlinks in the document.
Document.preferredStyleSheetSet Read 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.styleSheetSets Read only Returns a list of the style sheet sets available on the document.
Document.vlinkColor Gets/sets the color of visited hyperlinks.
Document.xmlEncoding Returns the encoding as determined by the XML declaration.
Document.xmlStandalone Returns true if the XML declaration specifies the document to be standalone (e.g., An external part of the DTD affects the document's content), else false.
Document.xmlVersion Returns the version number as specified in the XML declaration or "1.0" if the declaration is absent.
This interface also inherits from the Node and EventTarget interfaces.
Document.adoptNode()Adopt node from an external document.
Document.append()Inserts a set of Node objects or strings after the last child of the document.
Document.ariaNotify()Specifies that a given string of text should be announced by a screen reader.
Document.browsingTopics() Returns a promise that fulfills with an array of objects representing the top topics for the user, one from each of the last three epochs. By default, the method also causes the browser to record the current page visit as observed by the caller, so the page's hostname can later be used in topics calculation. See the Topics API for more details.
Document.captureEvents() See Window.captureEvents.
Document.caretPositionFromPoint()Returns a CaretPosition object containing the DOM node containing the caret, and caret's character offset within that node.
Document.caretRangeFromPoint() Gets a Range object for the document fragment under the specified coordinates.
Document.createAttribute()Creates a new Attr object 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.createEvent() Creates an event object.
Document.createNodeIterator()Creates a NodeIterator object.
Document.createProcessingInstruction()Creates a new ProcessingInstruction object.
Document.createRange()Creates a Range object.
Document.createTextNode()Creates a text node.
Document.createTouch() Creates a Touch object.
Document.createTouchList() Creates a TouchList object.
Document.createTreeWalker()Creates a TreeWalker object.
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.exitFullscreen()Stops document's fullscreen element from being displayed fullscreen.
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 Animation objects currently in effect, whose target elements are descendants of the document.
Document.getBoxQuads() Returns a list of DOMQuad objects 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 Selection object representing the range of text selected by the user, or the current position of the caret.
Document.hasPrivateToken() Returns a promise that fulfills with a boolean indicating whether the browser has a private state token stored from a particular issuer.
Document.hasRedemptionRecord() Returns a promise that fulfills with a boolean indicating whether the browser has a redemption record originating from a particular issuer.
Document.hasStorageAccess()Returns a Promise that resolves with a boolean value indicating whether the document has access to unpartitioned cookies.
Document.hasUnpartitionedCookieAccess()New name for Document.hasStorageAccess().
Document.importNode()Returns a clone of a node from an external document.
Document.moveBefore()Moves a given Node inside the Document DOM node as a direct child, before a given reference node, without removing and then inserting the node.
Document.mozSetImageElement() Allows you to change the element being used as the background image for a specified element ID.
Document.prepend()Inserts a set of Node objects or strings 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()Allows a document loaded in a third-party context (i.e., embedded in an <iframe>) to request access to unpartitioned cookies, in cases where user agents by default block access to unpartitioned cookies by sites loaded in a third-party context to improve privacy.
Document.requestStorageAccessFor() Allows top-level sites to request third-party cookie access on behalf of embedded content originating from another site in the same related website set.
Document.startViewTransition()Starts a new view transition and returns a ViewTransition object to represent it.
The Document interface is extended with the XPathEvaluator interface:
Document.createExpression()Compiles an XPathExpression which can then be used for (repeated) evaluations.
Document.createNSResolver() Returns the input node as-is.
Document.evaluate()Evaluates an XPath expression.
The Document interface for HTML documents inherit from the HTMLDocument interface or is extended for such documents:
Document.clear() 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 true if 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.
This interface also inherits from the Node and EventTarget interfaces.
Document.parseHTML()Creates a new Document object from a string of HTML in an XSS-safe manner with sanitization.
Document.parseHTMLUnsafe()Creates a new Document object from a string of HTML without performing sanitization.
The string may contain declarative shadow roots.
Listen to these events using addEventListener() or by assigning an event listener to the oneventname property of this interface. In addition to the events listed below, many events can bubble from nodes contained in the document tree.
afterscriptexecute Fired when a static <script> element finishes executing its script
beforescriptexecute Fired when a static <script> is about to start executing.
prerenderingchange Fired on a prerendered document when it is activated (i.e., the user views the page).
securitypolicyviolationFired when a content security policy is violated.
visibilitychangeFired when the content of a tab has become visible or has been hidden.
fullscreenchangeFired when the Document transitions into or out of fullscreen mode.
fullscreenerrorFired if an error occurs while attempting to switch into or out of fullscreen mode.
DOMContentLoadedFired when the document has been completely loaded and parsed, without waiting for stylesheets, images, and subframes to finish loading.
readystatechangeFired when the readyState attribute of a document has changed.
pointerlockchangeFired when the pointer is locked/unlocked.
pointerlockerrorFired when locking the pointer failed.
scrollFired when the document view or an element has been scrolled.
scrollendFired when the document view or an element has completed scrolling.
scrollsnapchange Fired on the scroll container at the end of a scrolling operation when a new scroll snap target has been selected.
scrollsnapchanging Fired on the scroll container when the browser determines a new scroll snap target is pending, i.e., it will be selected when the current scroll gesture ends.
selectionchangeFired when the current text selection on a document is changed.
Not all events that bubble can reach the Document object. Only the following do and can be listened for on the Document object:
abortauxclickbeforeinputbeforematchbeforetoggleblurcancelcanplaycanplaythroughchangeclickclosecontextlostcontextmenucontextrestoredcopycuechangecutdblclickdragdragenddragenterdragleavedragoverdragstartdropdurationchangeemptiedendederrorfocusformdatainputinvalidkeydownkeypresskeyuploadloadeddataloadedmetadataloadstartmousedownmouseentermouseleavemousemovemouseoutmouseovermouseuppastepauseplayplayingprogressratechangeresetresizescrollscrollendsecuritypolicyviolationseekedseekingselectslotchangestalledsubmitsuspendtimeupdatetogglevolumechangewaitingwheelThis page was last modified on Jul 18, 2026 by MDN contributors.
DocumentactiveElementactiveViewTransitionadoptedStyleSheetsalinkColorallanchorsappletsbgColorbodycharacterSetchildElementCountchildrencompatModecontentTypecookiecurrentScriptcustomElementRegistrydefaultViewdesignModedirdoctypedocumentElementdocumentURIdomainembedsfeaturePolicyfgColorfirstElementChildfontsformsfragmentDirectivefullscreenfullscreenElementfullscreenEnabledheadhiddenimagesimplementationlastElementChildlastModifiedlastStyleSheetSetlinkColorlinkslocationpictureInPictureElementpictureInPictureEnabledpluginspointerLockElementpreferredStyleSheetSetprerenderingreadyStatereferrerrootElementscriptsscrollingElementselectedStyleSheetSetstyleSheetsstyleSheetSetstimelinetitleURLvisibilityStatevlinkColorxmlEncodingxmlVersionadoptNode()append()ariaNotify()browsingTopics()caretPositionFromPoint()caretRangeFromPoint()clear()close()createAttribute()createAttributeNS()createCDATASection()createComment()createDocumentFragment()createElement()createElementNS()createEvent()createExpression()createNodeIterator()createNSResolver()createProcessingInstruction()createRange()createTextNode()createTouch()createTouchList()createTreeWalker()elementFromPoint()elementsFromPoint()enableStyleSheetsForSet()evaluate()execCommand()exitFullscreen()exitPictureInPicture()exitPointerLock()getAnimations()getElementById()getElementsByClassName()getElementsByName()getElementsByTagName()getElementsByTagNameNS()getSelection()hasFocus()hasPrivateToken()hasRedemptionRecord()hasStorageAccess()hasUnpartitionedCookieAccess()importNode()moveBefore()mozSetImageElement()open()prepend()queryCommandEnabled()queryCommandState()queryCommandSupported()querySelector()querySelectorAll()releaseCapture()replaceChildren()requestStorageAccess()requestStorageAccessFor()startViewTransition()write()writeln()AbortControllerAbortSignalAbstractRangeAttrCDATASectionCharacterDataCommentCustomEventDOMErrorDOMExceptionDOMImplementationDOMParserDOMTokenListDocumentFragmentDocumentTypeElementEventEventTargetHTMLCollectionMutationObserverMutationRecordNamedNodeMapNodeNodeIteratorNodeListProcessingInstructionQuotaExceededErrorRangeShadowRootStaticRangeTextTreeWalkerXMLDocumentXPathEvaluatorXPathExpressionXPathResultXSLTProcessorYour blueprint for a better internet.
Portions of this content are 19982026 by individual mozilla.org contributors. Content available under a Creative Commons license.
| Web Proxy Viewer | New URL | Original Page |