Articles tagged: DOM
Found 994 documents
- Web/API/Element/outerHTML The outerHTML attribute of the element DOM interface gets the serialized HTML fragment ...
- Web/API/Element/prefix The Element.prefix read-only property returns the namespace prefix of the specified element, or ...
- Web/API/Element/querySelector Returns the first element that is a descendant of the element on which it is invoked that ...
- Web/API/Element/querySelectorAll Returns a static (not live) NodeList of all elements descended from the element on which it is ...
- Web/API/Element/releasePointerCapture Releases (stops) pointer capture that was previously set for a specific (PointerEvent) pointer.
- Web/API/Element/removeAttribute removeAttribute removes an attribute from the specified element.
- Web/API/Element/removeAttributeNode removeAttributeNode removes the specified attribute from the current element.
- Web/API/Element/removeAttributeNS removeAttributeNS removes the specified attribute from an element.
- Web/API/Element/scrollIntoView The Element.scrollIntoView() method scrolls the element on which it's called into the visible ...
- Web/API/Element/scrollIntoViewIfNeeded The Element.scrollIntoViewIfNeeded() method scrolls the current element into the visible area of ...
- Web/API/Element/setAttribute Sets the value of an attribute on the specified element. If the attribute already exists, the ...
- Web/API/Element/setAttributeNode setAttributeNode() adds a new Attr node to the specified element.
- Web/API/Element/setAttributeNodeNS setAttributeNodeNS adds a new namespaced attribute node to an element.
- Web/API/Element/setAttributeNS setAttributeNS adds a new attribute or changes the value of an attribute with the given ...
- Web/API/Element/setCapture Call this method during the handling of a mousedown event to retarget all mouse events to this ...
- Web/API/Element/setPointerCapture Pointer capture allows events for a particular pointer event (PointerEvent) to be re-targeted to ...
- Web/API/Element/tabStop The tabStop property of the Element interface returns a Boolean indicating if the element can ...
- Web/API/Element/tagName Returns the name of the element.
- Web/API/ElementTraversal The ElementTraversal interface was defining methods allowing to access from one Node to another ...
- Web/API/Entity Read-only reference to a DTD entity. Also inherits the methods and properties of Node.
- Web/API/EntityReference Read-only reference to an entity reference in the DOM tree. Has no properties or methods of its ...
- Web/API/Event The Event interface represents any event which takes place in the DOM; some are user-generated ...
- Web/API/Event/bubbles Indicates whether the given event bubbles up through the DOM or not. "Bubbling" is essentially ...
- Web/API/Event/cancelable Events' cancelable property indicates if the event can be canceled, and therefore prevented as ...
- Web/API/Event/cancelBubble The Event.cancelBubble property is a historical alias to Event.stopPropagation(). Setting its ...
- Web/API/Event/Comparison_of_Event_Targets It's easy to get confused about which target to examine when writing an event handler. This ...
- Web/API/Event/createEvent Creates a new event, which must then be initialized by calling its initEvent() method.
- Web/API/Event/currentTarget Identifies the current target for the event, as the event traverses the DOM. It always refers to ...
- Web/API/Event/defaultPrevented Returns a boolean indicating whether or not event.preventDefault() was called on the event.
- Web/API/Event/Event The Event() constructor creates a new Event.
- Web/API/Event/eventPhase Indicates which phase of the event flow is currently being evaluated.
- Web/API/Event/explicitOriginalTarget The explicit original target of the event. (Mozilla-specific)
- Web/API/Event/initEvent The Event.initEvent() method is used to initialize the value of an event created using ...
- Web/API/Event/originalTarget The original target of the event before any retargetings. (Mozilla-specific)
- Web/API/Event/preventDefault The Event interface's preventDefault() method tells the user agent that if the event does not ...
- Web/API/Event/returnValue The Event.returnValue property indicates if the default action for this event has been prevented ...
- Web/API/Event/srcElement Event.srcElement is a proprietary alias for the standard Event.target property. It is specific ...
- Web/API/Event/stopPropagation Prevents further propagation of the current event in the capturing and bubbling phases.
- Web/API/Event/target A reference to the object that dispatched the event. It is different from event.currentTarget ...
- Web/API/Event/timeStamp Returns the time (in milliseconds) at which the event was created.
- Web/API/Event/type The Event.type read-only property returns a string containing the event's type. It is set when ...
- Web/API/EventListener The EventListener interface represents an object that can handle an event dispatched by an ...
- Web/API/EventTarget EventTarget is an interface implemented by objects that can receive events and may have ...
- Web/API/EventTarget/addEventListener The EventTarget.addEventListener() method adds the specified EventListener -compatible object to ...
- Web/API/EventTarget/attachEvent This is a proprietary Microsoft Internet Explorer alternative to the standard ...
- Web/API/EventTarget/detachEvent This is a proprietary Microsoft Internet Explorer alternative to the standard ...
- Web/API/EventTarget/dispatchEvent Dispatches an Event at the specified EventTarget, invoking the affected EventListener s in the ...
- Web/API/EventTarget/fireEvent This is a proprietary Microsoft Internet Explorer alternative to the standard ...
- Web/API/EventTarget/removeEventListener The EventTarget.removeEventListener() method removes from the EventTarget an event listener ...
- Web/API/File/fileName Returns the name of the file. For security reasons the path is excluded from this property.
- Web/API/File/fileSize Returns the size of a file in bytes.
- Web/API/FileReader/readAsArrayBuffer The FileReader interface's readAsArrayBuffer() method is used to start reading the contents of a ...
- Web/API/FileRequest The FileRequest interface extends the DOMRequest interface to provide some extra properties ...
- Web/API/FileRequest/lockedFile The lockedFile property represents the LockedFile object from which the request was started.
- Web/API/FileRequest/onprogress This property specifies a callback function to be run repeatedly while the operation represented ...
- Web/API/FocusEvent The FocusEvent interface represents focus-related events like focus, blur, focusin, or focusout.
- Web/API/Force_Touch_events Force Touch events are a proprietary, Apple-specific feature which makes possible (where ...
- Web/API/Fullscreen_API The Fullscreen API provides an easy way for web content to be presented using the user's entire ...
- Web/API/GestureEvent The GestureEvent is a proprietary interface specific to WebKit which gives information regarding ...
- Web/API/GlobalEventHandlers The GlobalEventHandlers mixin describes the event handlers common to several interfaces like ...
- Web/API/GlobalEventHandlers/onloadend The onloadend property of the GlobalEventHandlers mixin is an EventHandler representing the code ...
- Web/API/GlobalEventHandlers/onloadstart The onloadstart property of the GlobalEventHandlers mixin is an EventHandler representing the ...
- Web/API/GlobalEventHandlers/onreset The GlobalEventHandlers.onreset property contains an EventHandler triggered when a reset event ...
- Web/API/GlobalEventHandlers/onresize The GlobalEventHandlers.onresize property contains an EventHandler triggered when a resize event ...
- Web/API/GlobalEventHandlers/onwheel The onwheel property returns the onwheel event handler code on the current element.
- Web/API/History_API The DOM window object provides access to the browser's history through the history object. It ...
- Web/API/HTMLButtonElement/labels The HTMLButtonElement.labels read-only property returns a NodeList of the label elements ...
- Web/API/HTMLCollection The HTMLCollection interface represents a generic collection (array-like object similar to ...
- Web/API/HTMLElement/outerText HTMLElement.outerText is a nonstandard property. As a getter, it returns the same value as ...
- Web/API/HTMLFormElement The HTMLFormElement interface provides methods to create and modify form elements.
- Web/API/HTMLIFrameElement/contentWindow The contentWindow property returns the Window object of an iframe element. You can use this ...
- Web/API/HTMLIFrameElement/getStructuredData The getStructuredData() method of the HTMLIFrameElement interface retrieves any structured ...
- Web/API/HTMLImageElement/Image The Image() constructor creates a new HTMLImageElement instance.
- Web/API/HTMLInputElement/labels The HTMLInputElement.labels read-only property returns a NodeList of the label elements ...
- Web/API/HTMLMediaElement The HTMLMediaElement interface adds to HTMLElement the properties and methods needed to support ...
- Web/API/HTMLMediaElement/srcObject The srcObject property of the HTMLMediaElement interface sets or returns the object which serves ...
- Web/API/HTMLMeterElement/labels The HTMLMeterElement.labels read-only property returns a NodeList of the label elements ...
- Web/API/HTMLOutputElement/labels The HTMLOutputElement.labels read-only property returns a NodeList of the label elements ...
- Web/API/HTMLProgressElement/labels The HTMLProgressElement.labels read-only property returns a NodeList of the label elements ...
- Web/API/HTMLSelectElement/labels The HTMLSelectElement.labels read-only property returns a NodeList of the label elements ...
- Web/API/HTMLTextAreaElement/labels The HTMLTextAreaElement.labels read-only property returns a NodeList of the label elements ...
- Web/API/HTMLVideoElement The HTMLVideoElement interface provides special properties and methods for manipulating video ...
- Web/API/IDBEnvironment The IDBEnvironment helper of the IndexedDB API contains the indexedDB property, which provides ...
- Web/API/IDBMutableFile The IDBMutableFile interface provides access in read or write mode to a file, dealing with all ...
- Web/API/IDBVersionChangeEvent The IDBVersionChangeEvent interface of the IndexedDB API indicates that the version of the ...
- Web/API/InputEvent The InputEvent interface represents an event notifying of editable content change.
- Web/API/InputEvent/InputEvent The InputEvent() constructor creates a new InputEvent.
- Web/API/KeyboardEvent KeyboardEvent objects describe a user interaction with the keyboard. Each event describes a key; ...
- Web/API/KeyboardEvent/altKey The KeyboardEvent.altKey read-only property is a Boolean indicates if the alt key (Option or ⌥ ...
- Web/API/KeyboardEvent/charCode The KeyboardEvent.charCode read-only property returns the Unicode value of a character key ...
- Web/API/KeyboardEvent/ctrlKey The KeyboardEvent.ctrlKey read-only property returns a Boolean that indicates if the control key ...
- Web/API/KeyboardEvent/getModifierState The KeyboardEvent.getModifierState() method returns the current state of the specified modifier ...
- Web/API/KeyboardEvent/initKeyEvent The KeyboardEvent.initKeyEvent method is used to initialize the value of an event created using ...
- Web/API/KeyboardEvent/isComposing The KeyboardEvent.isComposing read-only property returns a Boolean value indicating if the event ...
- Web/API/KeyboardEvent/key The KeyboardEvent.key read-only property returns the value of a key or keys pressed by the user.
- Web/API/KeyboardEvent/KeyboardEvent The KeyboardEvent() constructor creates a new KeyboardEvent.
- Web/API/KeyboardEvent/keyCode The KeyboardEvent.keyCode read-only property represents a system and implementation dependent ...
- Web/API/KeyboardEvent/keyIdentifier The deprecated KeyboardEvent.keyIdentifier read-only property returns a "key identifier" string ...
- Web/API/KeyboardEvent/location The KeyboardEvent.location read-only property returns an unsigned long representing the location ...
- Web/API/KeyboardEvent/metaKey The KeyboardEvent.metaKey read-only property returning a Boolean that indicates if the Meta key ...