Results 1 - 20 of 64

<meta>

The HTML <meta> element represents any metadata information that cannot be represented by one of the other HTML meta-related elements (<base>, <link>, <script>, <style> or <title>).
Document Element HTML HTML document metadata metadata Reference Web

Document.queryCommandEnabled()

The Document.queryCommandEnabled() method reports whether or not the specified editor command is enabled by the browser.
CSS CSS Reference Document Method

Document.querySelectorAll()

Returns a list of the elements within the document (using depth-first pre-order traversal of the document's nodes) that match the specified group of selectors. The object returned is a NodeList.
API Document DOM Method Selectors

XPathExpression

An XPathExpression is a compiled XPath query returned from document.createExpression(). It has a method evaluate() which can be used to execute the compiled XPath.
Document DOM NeedsUpdate XML XPath

Document.characterSet

The Document.characterSet read-only property returns the character encoding of the current document. The character encoding is the character set used for rendering the document, which may be different from the encoding specified by the page. (The user can override the encoding.).
API Document DOM Property Read-only Reference

Document.createElement()

In an HTML document, the Document.createElement() method creates the specified HTML element or an HTMLUnknownElement if the given element name isn't a known one.
API Document DOM Method Reference Référence

Document.createTreeWalker()

The Document.createTreeWalker() creator method returns a newly created TreeWalker object.
API Document DOM DOM Reference Method

Document.defaultView

In browsers, document.defaultView returns the window object associated with a document, or null if none is available.
API Document HTML DOM Property Reference

Document.doctype

Returns the Document Type Declaration (DTD) associated with current document. The returned object implements the DocumentType interface. Use DOMImplementation.createDocumentType() to create a DocumentType.
API Document DOM Property Reference Référence

Document.getSelection()

This method functions identically to the Window.getSelection() method; it returns a Selection object representing the text currently selected in the document.
API Document DOM Method Reference Référence Selection

Document.importNode()

Creates a copy of a node from an external document that can be inserted into the current document.
API Document DOM Method Node Reference Référence

Document.links

The links property returns a collection of all <area> elements and <a> elements in a document with a value for the href attribute.
API Document HTML DOM Property Reference Référence

Document.ononline

"online" event is fired on the <body> of each page when the browser switches between online and offline mode. Additionally, the events bubble up from document.body, to document, ending at window. Both events are non-cancellable (you can't prevent the user from coming online, or going offline).
API Document DOM Property Reference Référence

Document.onselectionchange

The Document.onselectionchange property represents the event handler that is called when a selectionchange event reaches this object.
API Document Event Handler Experimental Property Reference

Document.plugins

Returns an HTMLCollection object containing one or more HTMLEmbedElements or null which represent the <embed> elements in the current document.
API Document NeedsCompatTable NeedsMarkupWork Property Reference Référence

Document.scrollingElement

The scrollingElement read-only property of the Document interface returns a reference to the Element that scrolls the document.
API Document Experimental Property Reference scrollingElement

Element.requestFullscreen()

The Element.requestFullscreen() method issues an asynchronous request to make the element be displayed full-screen.
API Document Fullscreen API Method Reference