Articles tagged: HTML DOM
Found 354 documents
- Web/API/DataTransfer/clearData The DataTransfer.clearData() method removes the drag operation's drag data for the given type. ...
- Web/API/DataTransfer/dropEffect The DataTransfer.dropEffect property controls the feedback (typically visual) the user is given ...
- Web/API/DataTransfer/effectAllowed The DataTransfer.effectAllowed property specifies the effect that is allowed for a drag ...
- Web/API/DataTransfer/files The DataTransfer.files property is a list of the files in the drag operation. If the operation ...
- Web/API/DataTransfer/getData The DataTransfer.getData() method retrieves drag data (as a DOMString) for the specified type. ...
- Web/API/DataTransfer/items The DataTransfer.items property is a list of the data transfer items in a drag operation. The ...
- Web/API/DataTransfer/setData The DataTransfer.setData() method sets the drag operation's drag data to the specified data and ...
- Web/API/DataTransfer/setDragImage When a drag occurs, a translucent image is generated from the drag target (the element the ...
- Web/API/DataTransfer/types The DataTransfer.types read-only property is an array of the drag data formats (as strings) that ...
- Web/API/DataTransferItem The DataTransferItem object represents one drag data item. During a drag operation, each drag ...
- Web/API/DataTransferItem/getAsFile If the item is a file, the DataTransferItem.getAsFile() method returns the drag data item's File ...
- Web/API/DataTransferItem/getAsString The DataTransferItem.getAsString() method invokes the given callback with the drag data item's ...
- Web/API/DataTransferItem/kind The read-only DataTransferItem.kind property returns a DataTransferItem representing the drag ...
- Web/API/DataTransferItem/type The read-only DataTransferItem.type property returns the type (format) of the DataTransferItem ...
- Web/API/DataTransferItemList The DataTransferItemList object is a list of DataTransferItem objects representing items being ...
- Web/API/DataTransferItemList/add The DataTransferItemList.add() method creates a new DataTransferItem using the specified data ...
- Web/API/DataTransferItemList/clear The DataTransferItemList.clear() method removes all DataTransferItem objects from the drag data ...
- Web/API/DataTransferItemList/DataTransferItem The DataTransferItemList() getter method implements support for accessing items in the ...
- Web/API/DataTransferItemList/length The read-only DataTransferItemList.length property returns the number of items in the list. If ...
- Web/API/DataTransferItemList/remove The DataTransferItemList.remove() method removes the DataTransferItem at the specified index ...
- Web/API/Document/activeElement Returns the currently focused element, that is, the element that will get keystroke events if ...
- Web/API/Document/alinkColor Returns or sets the color of an active link in the document body. A link is active during the ...
- Web/API/Document/anchors anchors returns a list of all of the anchors in the document.
- Web/API/Document/applets applets returns an ordered list of the applets within a document.
- Web/API/Document/bgColor The deprecated bgColor property gets or sets the background color of the current document.
- Web/API/Document/body Returns the body or frameset node of the current document, or null if no such element exists.
- Web/API/Document/clear This method used to clear the whole specified document in early (pre-1.0) versions of Mozilla.
- Web/API/Document/close The document.close() method finishes writing to a document, opened with document.open().
- Web/API/Document/cookie Get and set the cookies associated with the current document. For a general library see this ...
- Web/API/Document/defaultView In browsers, document.defaultView returns the window object associated with a document, or null ...
- Web/API/Document/designMode document.designMode controls whether the entire document is editable. Valid values are "on" and ...
- Web/API/Document/dir The Document.dir property is a DOMString representing the directionality of the text of the ...
- Web/API/Document/domain Gets/sets the domain portion of the origin of the current document, as used by the same origin ...
- Web/API/Document/embeds embeds returns a list of the embedded OBJECTS within the current document.
- Web/API/Document/fgColor fgColor gets/sets the foreground color, or text color, of the current document.
- Web/API/Document/forms forms returns a collection (an HTMLCollection) of the form elements within the current document.
- Web/API/Document/head Returns the head element of the current document. If there are more than one head elements, the ...
- Web/API/Document/height Returns the height of the document object. In most cases, this is equal to the body element of ...
- Web/API/Document/images document.images returns a collection of the images in the current HTML document.
- Web/API/Document/lastModified Returns a string containing the date and time on which the current document was last modified.
- Web/API/Document/linkColor linkColor gets/sets the color of links within the document.
- Web/API/Document/links The links property returns a collection of all area elements and a elements in a document with a ...
- Web/API/Document/location The Document.location read-only property returns a Location object, which contains information ...
- Web/API/Document/readyState The Document.readyState property of a document describes the loading state of the document.
- Web/API/Document/referrer Returns the URI of the page that linked to this page.
- Web/API/Document/scripts Returns a list of the script elements in the document. The returned object is an HTMLCollection.
- Web/API/Document/title Gets or sets the title of the document.
- Web/API/Document/URL The URL read-only property of the Document interface returns the document location as a string.
- Web/API/Document/vlinkColor Gets/sets the color of links that the user has visited in the document.
- Web/API/Document/width Returns the width of the body element of the current document in pixels.
- Web/API/DOMStringMap Used by the dataset HTML attribute to represent data for custom attributes added to elements.
- Web/API/GlobalEventHandlers/GlobalEventHanders.ontouchmove A global event handler for the touchmove event.
- Web/API/GlobalEventHandlers/onblur The onblur property returns the onBlur event handler code, if any, that exists on the current ...
- Web/API/GlobalEventHandlers/onchange The onchange property sets and returns the event handler for the change event.
- Web/API/GlobalEventHandlers/onclick The onclick property returns the click event handler code on the current element.
- Web/API/GlobalEventHandlers/onclose An event handler for close events sent to the window. (Not available with Firefox 2 or Safari)
- Web/API/GlobalEventHandlers/oncontextmenu An event handler property for right-click events on the window. Unless the default behavior is ...
- Web/API/GlobalEventHandlers/ondblclick The ondblclick property returns the onDblClick event handler code on the current element.
- Web/API/GlobalEventHandlers/ondrag A global event handler for the drag event.
- Web/API/GlobalEventHandlers/ondragend A global event handler for the dragend event.
- Web/API/GlobalEventHandlers/ondragenter A global event handler for the dragenter event.
- Web/API/GlobalEventHandlers/ondragleave A global event handler for the dragleave event.
- Web/API/GlobalEventHandlers/ondragover A global event handler for the dragover event.
- Web/API/GlobalEventHandlers/ondragstart A global event handler for the dragstart event.
- Web/API/GlobalEventHandlers/ondrop A global event handler for the drop event.
- Web/API/GlobalEventHandlers/onerror An event handler for the error event. Error events are fired at various targets for different ...
- Web/API/GlobalEventHandlers/onfocus The onfocus property returns the onFocus event handler code on the current element.
- Web/API/GlobalEventHandlers/oninput An event handler for the input event on the window. The input event is raised when an input ...
- Web/API/GlobalEventHandlers/onkeydown The onkeydown property returns the onKeyDown event handler code on the current element.
- Web/API/GlobalEventHandlers/onkeypress The onkeypress property sets and returns the onKeyPress event handler code for the current element.
- Web/API/GlobalEventHandlers/onkeyup The onkeyup property returns the onKeyUp event handler code for the current element.
- Web/API/GlobalEventHandlers/onload An event handler for the load event of a window.
- Web/API/GlobalEventHandlers/onmousedown The onmousedown property returns the onmousedown event handler code on the current element.
- Web/API/GlobalEventHandlers/onmousemove The onmousemove property returns the mousemove event handler code on the current element.
- Web/API/GlobalEventHandlers/onmouseout The onmouseout property returns the onMouseOut event handler code on the current element.
- Web/API/GlobalEventHandlers/onmouseover The onmouseover property returns the onMouseOver event handler code on the current element.
- Web/API/GlobalEventHandlers/onmouseup The onmouseup property returns the onMouseUp event handler code on the current element.
- Web/API/GlobalEventHandlers/onpointercancel A global event handler for the pointercancel event.
- Web/API/GlobalEventHandlers/onpointerdown A global event handler for the pointerdown event.
- Web/API/GlobalEventHandlers/onpointerenter A global event handler for the pointerenter event.
- Web/API/GlobalEventHandlers/onpointerleave A global event handler for the pointerleave event.
- Web/API/GlobalEventHandlers/onpointermove A global event handler for the pointermove event.
- Web/API/GlobalEventHandlers/onpointerout A global event handler for the pointerout event.
- Web/API/GlobalEventHandlers/onpointerover A global event handler for the pointerover event.
- Web/API/GlobalEventHandlers/onpointerup A global event handler for the pointerup event.
- Web/API/GlobalEventHandlers/onscroll An event handler for scroll events on element.
- Web/API/GlobalEventHandlers/onselect An event handler for the select event on the window.
- Web/API/GlobalEventHandlers/onsubmit An event handler for the submit event on the window.
- Web/API/GlobalEventHandlers/ontouchcancel A global event handler for the touchcancel event.
- Web/API/GlobalEventHandlers/ontouchend A global event handler for the touchend event.
- Web/API/GlobalEventHandlers/ontouchmove A global event handler for the touchmove event.
- Web/API/GlobalEventHandlers/ontouchstart A global event handler for the touchstart event.
- Web/API/HTMLAnchorElement The HTMLAnchorElement interface represents hyperlink elements and provides special properties ...
- Web/API/HTMLAnchorElement/rel The HTMLAnchorElement.rel property reflects the rel attribute. It is a DOMString containing a ...
- Web/API/HTMLAnchorElement/relList The HTMLAnchorElement.relList read-only property reflects the rel attribute. It is a live ...
- Web/API/HTMLAreaElement The HTMLAreaElement interface provides special properties and methods (beyond those of the ...
- Web/API/HTMLAreaElement/rel The HTMLAreaElement.rel property reflects the rel attribute. It is a DOMString containing a ...
- Web/API/HTMLAreaElement/relList The HTMLAreaElement.relList read-only property reflects the rel attribute. It is a live ...
- Web/API/HTMLAudioElement The HTMLAudioElement interface provides access to the properties of audio elements, as well as ...
- Web/API/HTMLBaseElement The HTMLBaseElement interface contains the base URI for a document. This object inherits all of ...