Results 381 - 400 of 1,243

DOMCursor

A DOMCursor object represents an ongoing operation over a list of results. It is an enhanced DOMRequest that allows to iterate through a list of results asynchronously. Each time its continue() method is called, the DOMCursor tries to reach the next result in the list and calls its result's success or error accordingly.
API DOM Interface Non-standard Reference

DOMImplementation.createDocument()

The DOMImplementation.createDocument() method creates and returns an XMLDocument.
API DOM DOMImplementation Method Reference Référence

DOMImplementation.createDocumentType()

The DOMImplementation.createDocumentType() method returns a DocumentType object which can either be used with DOMImplementation.createDocument upon document creation or can be put into the document via methods like Node.insertBefore() or Node.replaceChild().
API DOM DOMImplementation Method Reference Référence

DOMRequest

A DOMRequest object represents an ongoing operation. It provides callbacks that are called when the operation completes, as well as a reference to the operation's result. A DOM method that initiates an ongoing operation may return a DOMRequest object that you can use to monitor the progress of that operation.
API DOM Interface Non-standard Reference

DragEvent.dataTransfer

The DataEvent.dataTransfer property holds the drag operation's data (as a DataTransfer object).
API DOM drag and drop Property Reference

DragEvent()

This constructor is used to create a synthetic DragEvent object.
API Constructor DOM drag and drop Reference

Element.attributes

The Element.attributes property returns a live collection of all attribute nodes registered to the specified node. It is a NamedNodeMap, not an Array, so it has no Array methods and the Attr nodes' indexes may differ among browsers. To be more specific, attributes is a key/value pair of strings that represents any information regarding that attribute.
API DOM Element Élément Property Reference Référence

Element.classList

The Element.classList is a read-only property which returns a live DOMTokenList collection of the class attributes of the element.
API DOM Element Property Read-only Reference

Element.className

className gets and sets the value of the class attribute of the specified element.
API DOM Gecko Property Reference Référence

Element.getAttribute()

getAttribute() returns the value of a specified attribute on the element. If the given attribute does not exist, the value returned will either be null or "" (the empty string); see Notes for details.
API DOM Method NeedsBrowserCompatibility NeedsCompatTable Reference Référence

Element.getAttributeNode()

Returns the specified attribute of the specified element, as an Attr node.
API DOM Element Élément Method Reference Référence

Element.getElementsByTagName()

The Element.getElementsByTagName() method returns a live HTMLCollection of elements with the given tag name. The subtree underneath the specified element is searched, excluding the element itself. The returned list is live, meaning that it updates itself with the DOM tree automatically. Consequently, there is no need to call several times Element.getElementsByTagName() with the same element and arguments.
API DOM Element Élément Method Reference Référence

Element.hasAttributeNS()

hasAttributeNS returns a boolean value indicating whether the current element has the specified attribute.
API DOM Element Élément Method Reference Référence

Element.hasAttributes()

The Element.hasAttributes() method returns a Boolean value, true or false, indicating if the current element has any attributes or not.
API DOM Element Élément Method Reference Référence

Element.id

The Element.id property represents the element's identifier, reflecting the id global attribute.
API DOM Element Élément Property Reference Référence