Results 221 - 240 of 1,243

Window.getAttention()

Attempts to get the user's attention. How this happens varies based on OS and window manager.
API DOM DOM Reference Gecko Method Reference Référence

Window.length

Returns the number of frames (either <frame> or <iframe> elements) in the window.
API DOM DOM Reference Gecko Property Reference Window

requestIdleCallback

The window.requestIdleCallback() method queues a function to be called during a browser's idle periods. This enables developers to perform background and low priority work on the main event loop, without impacting latency-critical events such as animation and input response. Functions are generally called in first-in-first-out order unless the function's timeout is reached before the browser calls it.
API DOM DOM Reference JavaScript timers Method Reference

ChildNode

The ChildNode interface contains methods that are particular to Node objects that can have a parent.
API DOM Experimental Interface Node

ChildNode.remove()

The ChildNode.remove() method removes the object from the tree it belongs to.
API ChildNode DOM Experimental Method

CompositionEvent

The DOM CompositionEvent represents events that occur due to the user indirectly entering text.
API DOM Event NeedsBrowserCompatibility Reference

Document.compatMode

Indicates whether the document is rendered in Quirks mode or Standards mode.
API DOM Property Reference Référence

Document.createCDATASection()

createCDATASection() creates a new CDATA section node, and returns it.
API DOM Method Reference Référence

Document.createComment()

createComment() creates a new comment node, and returns it.
API DOM Method Reference Référence

Document.createElementNS()

Creates an element with the specified namespace URI and qualified name.
API DOM Method Reference Référence

Document.createEvent()

Creates an event of the type specified. The returned object should be first initialized and can then be passed to element.dispatchEvent.
API DOM Method Reference Référence

Document.createExpression()

This method compiles an XPathExpression which can then be used for (repeated) evaluations.
API DOM Method Reference Référence

Document.documentURIObject

The Document.documentURIObject read-only property returns an nsIURI object representing the URI of the document.
API DOM Property Reference Référence

Document.evaluate()

Returns an XPathResult based on an XPath expression and other given parameters.
API DOM Method Reference XPath

Document.getElementsByTagName()

Returns an HTMLCollection of elements with the given tag name. The complete document is searched, including the root node. The returned HTMLCollection is live, meaning that it updates itself automatically to stay in sync with the DOM tree without having to call document.getElementsByTagName() again.
API DOM Method Reference Référence