Articles tagged: API
Found 5012 documents
- Web/API/Element/requestPointerLock The Element.requestPointerLock() method allows to asynchronously ask for the pointer to be ...
- Web/API/Element/runtimeStyle Element.runtimeStyle is a proprietary property similar to HTMLElement.style, except its styles, ...
- Web/API/Element/scrollHeight The Element.scrollHeight read-only property is a measurement of the height of an element's ...
- 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/scrollLeft The Element.scrollLeft property gets or sets the number of pixels that an element's content is ...
- Web/API/Element/scrollLeftMax The Element.scrollLeftMax read-only property returns a Number representing the maximum left ...
- Web/API/Element/scrollTop The Element.scrollTop property gets or sets the number of pixels that an element's content is ...
- Web/API/Element/scrollTopMax The Element.scrollTopMax read-only property returns a Number representing the maximum top scroll ...
- Web/API/Element/scrollWidth The Element.scrollWidth read-only property is a measurement of the width of an element's ...
- 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/shadowRoot The Element.shadowRoot read-only property represents the shadow root hosted by the element. Use ...
- Web/API/Element/slot The slot property of the Element interface returns the name of the shadow DOM slot attached 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/Encoding_API The Encoding API provides a mechanism for handling text in various character encodings, ...
- Web/API/Encrypted_Media_Extensions_API The Encrypted Media Extensions API provides interfaces for controlling the playback of content ...
- 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/EntrySync The EntrySync interface of the FileSystem API represents an entry in a file system. The entry ...
- Web/API/ErrorEvent The ErrorEvent interface represents events providing information related to errors in scripts or ...
- 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/composed The read-only composed property of the Event interface returns a Boolean which indicates whether ...
- 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/deepPath The deepPath property of the Event interface returns an Array of nodes through which the event ...
- 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/isTrusted The isTrusted read-only property of the Event interface is a boolean that is true when the event ...
- 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/stopImmediatePropagation Prevents other listeners of the same event from being called.
- 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/EventSource The EventSource interface is used to receive server-sent events. It connects to a server over ...
- Web/API/EventSource/close The close() method of the EventSource interface closes the connection, if one is made, and sets ...
- Web/API/EventSource/EventSource The EventSource () constructor returns a newly-created EventSource, which represents a remote ...
- Web/API/EventSource/onerror The onerror property of the EventSource interface is an EventHandler called when an error occurs ...
- Web/API/EventSource/onmessage The onmessage property of the EventSource interface is an EventHandler called when a message ...
- Web/API/EventSource/onopen The onopen property of the EventSource interface is an EventHandler called when an open event is ...
- Web/API/EventSource/readyState The readyState read-only property of the EventSource interface returns a number representing the ...
- Web/API/EventSource/url The url read-only property of the EventSource interface returns a DOMString representing the URL ...
- Web/API/EventSource/withCredentials The withCredentials read-only property of the EventSource interface returns a Boolean indicating ...
- 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/ExtendableEvent The ExtendableEvent interface extends the lifetime of the install and activate events dispatched ...
- Web/API/ExtendableEvent/ExtendableEvent The ExtendableEvent() constructor creates a new ExtendableEvent object.
- Web/API/ExtendableEvent/waitUntil The extendableEvent.waitUntil() method tells the event dispatcher that work is ongoing. It can ...
- Web/API/ExtendableMessageEvent The ExtendableMessageEvent interface of the ServiceWorker API represents the event object of a ...
- Web/API/ExtendableMessageEvent/data The data read-only property of the ExtendableMessageEvent interface returns the event's data. It ...
- Web/API/ExtendableMessageEvent/ExtendableMessageEvent The Extendable MessageEvent() constructor creates a new ExtendableMessageEvent object instance.
- Web/API/ExtendableMessageEvent/lastEventId The lastEventID read-only property of the ExtendableMessageEvent interface represents, in ...
- Web/API/ExtendableMessageEvent/origin The origin read-only property of the ExtendableMessageEvent interface returns the origin of the ...
- Web/API/ExtendableMessageEvent/ports The ports read-only property of the ExtendableMessageEvent interface returns the array ...
- Web/API/ExtendableMessageEvent/source The source read-only property of the ExtendableMessageEvent returns a reference to the Client ...
- Web/API/EXT_blend_minmax The EXT_blend_minmax extension is part of the WebGL API and extends blending capabilities by ...
- Web/API/EXT_color_buffer_float The EXT_color_buffer_float extension is part of WebGL and adds the ability to render a variety ...
- Web/API/EXT_color_buffer_half_float The EXT_color_buffer_half_float extension is part of the WebGL API and adds the ability to ...
- Web/API/EXT_disjoint_timer_query The EXT_disjoint_timer_query extension is part of the WebGL API and provides a way to measure ...
- Web/API/EXT_disjoint_timer_query/beginQueryEXT The EXT_disjoint_timer_query.beginQueryEXT() method of the WebGL API starts a timer query.
- Web/API/EXT_disjoint_timer_query/createQueryEXT The EXT_disjoint_timer_query.createQueryEXT() method of the WebGL API creates and initializes ...
- Web/API/EXT_disjoint_timer_query/deleteQueryEXT The EXT_disjoint_timer_query.deleteQueryEXT() method of the WebGL API deletes a given WebGLQuery ...
- Web/API/EXT_disjoint_timer_query/endQueryEXT The EXT_disjoint_timer_query.endQueryEXT() method of the WebGL API ends a timer query.
- Web/API/EXT_disjoint_timer_query/getQueryEXT The EXT_disjoint_timer_query.getQueryEXT() method of the WebGL API returns information about a ...
- Web/API/EXT_disjoint_timer_query/getQueryObjectEXT The EXT_disjoint_timer_query.getQueryObjectEXT() method of the WebGL API returns the state of a ...
- Web/API/EXT_disjoint_timer_query/isQueryEXT The EXT_disjoint_timer_query.isQueryEXT() method of the WebGL API returns true if the passed ...
- Web/API/EXT_disjoint_timer_query/queryCounterEXT The EXT_disjoint_timer_query.queryCounterEXT() method of the WebGL API records the current time ...
- Web/API/EXT_frag_depth The EXT_frag_depth extension is part of the WebGL API and enables to set a depth value of a ...
- Web/API/EXT_shader_texture_lod The EXT_shader_texture_lod extension is part of the WebGL API and adds additional texture ...
- Web/API/EXT_sRGB The EXT_sRGB extension is part of the WebGL API and adds sRGB support to textures and ...
- Web/API/EXT_texture_filter_anisotropic The EXT_texture_filter_anisotropic extension is part of the WebGL API and exposes two constants ...
- Web/API/FederatedCredential The FederatedCredential interface of the the Credential Management API provides information ...
- Web/API/FederatedCredential/FederatedCredential The FederatedCredential constructor creates a new FederatedCredential object.
- Web/API/FederatedCredential/provider The provider property of the FederatedCredential interface returns a USVString containing a ...
- Web/API/FetchEvent This is the event type for fetch events dispatched on the service worker global scope. It ...
- Web/API/FetchEvent/client The FetchEvent.client read-only property returns the Client that the current service worker is ...
- Web/API/FetchEvent/clientId The clientId read-only property of the FetchEvent returns the id of the Client that the current ...
- Web/API/FetchEvent/FetchEvent The FetchEvent() constructor creates a new FetchEvent object.