Articles tagged: API
Found 5012 documents
- Web/API/Screen The Screen interface represents a screen, usually the one on which the current window is being ...
- Web/API/Screen/availHeight The read-only Screen interface's availHeight property returns the height, in CSS pixels, of the ...
- Web/API/Screen/availLeft Returns the first available pixel available from the left side of the screen.
- Web/API/Screen/availTop Specifies the y-coordinate of the first pixel that is not allocated to permanent or ...
- Web/API/Screen/availWidth Returns the amount of horizontal space in pixels available to the window.
- Web/API/Screen/colorDepth Returns the color depth of the screen. Per the CSSOM, some implementations return 24 for ...
- Web/API/Screen/height Returns the height of the screen in pixels.
- Web/API/Screen/left Returns the distance in pixels from the left side of the main screen to the left side of the ...
- Web/API/Screen/lockOrientation The lockOrientation method locks the screen into the specified orientation.
- Web/API/Screen/mozBrightness Indicates how bright the screen's backlight is, on a scale from 0 (very dim) to 1 (full ...
- Web/API/Screen/mozEnabled This Boolean attribute controls the device's screen. Setting it to false will turn off the screen.
- Web/API/Screen/onorientationchange An event handler for the orientationchange events sent to the screen object.
- Web/API/Screen/orientation The Screen.orientation property give the current orientation of the screen.
- Web/API/Screen/pixelDepth Returns the bit depth of the screen. Per the CSSOM, some implementations return 24 for ...
- Web/API/Screen/top Returns the distance in pixels from the top side of the current screen.
- Web/API/Screen/unlockOrientation The Screen.unlockOrientation method removes all the previous screen locks set by the page/app.
- Web/API/Screen/width Returns the width of the screen.
- Web/API/ScreenOrientation The ScreenOrientation interface of the the Screen Orientation API provides information about the ...
- Web/API/ScreenOrientation/angle The angle read-only property of the ScreenOrientation interface returns the document's current ...
- Web/API/ScreenOrientation/lock The lock() property of the ScreenOrientation interface locks the orientation of the containing ...
- Web/API/ScreenOrientation/onchange The onchange property of the ScreenOrientation is an event handler fired whenever is the ...
- Web/API/ScreenOrientation/type The type read-only property of the ScreenOrientation interface returns the document's current ...
- Web/API/ScreenOrientation/unlock The unlock() property of the ScreenOrientation interface unlocks the orientation of the ...
- Web/API/ScriptProcessorNode The size of the input and output buffer are defined at the creation time, when the ...
- Web/API/ScriptProcessorNode/bufferSize The following example shows basic usage of a ScriptProcessorNode to take a track loaded via ...
- Web/API/ScriptProcessorNode/onaudioprocess The following example shows basic usage of a ScriptProcessorNode to take a track loaded via ...
- Web/API/SecurityPolicyViolationEvent The SecurityPolicyViolationEvent interface is an event sent on a document or worker when its ...
- Web/API/Selection A Selection object represents the range of text selected by the user or the current position of ...
- Web/API/Selection/addRange The Selection.addRange() method adds a Range to a Selection.
- Web/API/Selection/anchorNode The Selection.anchorNode read-only property returns the Node in which the selection begins.
- Web/API/Selection/anchorOffset The Selection.anchorOffset read-only property returns the number of characters that the ...
- Web/API/Selection/collapse The Selection.collapse() method collapses the current selection to a single point. The document ...
- Web/API/Selection/collapseToEnd The Selection.collapseToEnd() method collapses the selection to the end of the last range in the ...
- Web/API/Selection/collapseToStart The Selection.collapseToStart() method collapses the selection to the start of the first range ...
- Web/API/Selection/containsNode The Selection.containsNode() method indicates if the node is part of the selection.
- Web/API/Selection/deleteFromDocument The Selection.deleteFromDocument() method deletes the actual text being represented by a ...
- Web/API/Selection/extend The Selection.extend() method moves the focus of the selection to a specified point. The anchor ...
- Web/API/Selection/focusNode Selection.focusNode read-only property returns the Node, in which selection ends.
- Web/API/Selection/focusOffset The Selection.focusOffset read-only property returns the number of characters that the ...
- Web/API/Selection/getRangeAt The Selection.getRangeAt() method returns a range object representing one of the ranges ...
- Web/API/Selection/isCollapsed The Selection.isCollapsed read-only property returns a Boolean which indicates whether or not ...
- Web/API/Selection/modify The Selection.modify() method applies a change to the current selection or cursor position, ...
- Web/API/Selection/rangeCount The Selection.rangeCount read-only property returns the number of ranges in the selection.
- Web/API/Selection/removeAllRanges The Selection.removeAllRanges() method removes all ranges from the selection, leaving the ...
- Web/API/Selection/removeRange The Selection.removeRange() method removes a range from a selection.
- Web/API/Selection/selectAllChildren The Selection.selectAllChildren() method adds all the children of the specified node to the ...
- Web/API/Selection/setBaseAndExtent The setBaseAndExtent() method of the Selection interface sets the selection to be a range ...
- Web/API/Selection/toString The Selection.toString() method returns a string currently being represented by the selection ...
- Web/API/Selection/type The type read-only property of the Selection interface returns a DOMString describing the type ...
- Web/API/Selection_API To retrieve the current text range the user has selected, you can use the Window.getSelection() ...
- Web/API/ServiceWorker The ServiceWorker interface of the ServiceWorker API provides a reference to a service worker. ...
- Web/API/ServiceWorker/onstatechange An EventListener property called whenever an event of type statechange is fired; it is basically ...
- Web/API/ServiceWorker/scriptURL Returns the ServiceWorker serialized script URL defined as part of ServiceWorkerRegistration. ...
- Web/API/ServiceWorker/state The state read-only property of the ServiceWorker interface returns a string representing the ...
- Web/API/ServiceWorkerContainer The ServiceWorkerContainer interface of the ServiceWorker API provides an object representing ...
- Web/API/ServiceWorkerContainer/controller The controller read-only property of the ServiceWorkerContainer interface returns a ...
- Web/API/ServiceWorkerContainer/getRegistration The getRegistration() method of the ServiceWorkerContainer interface gets a ...
- Web/API/ServiceWorkerContainer/getRegistrations The getRegistrations() method of the ServiceWorkerContainer interface returns all ...
- Web/API/ServiceWorkerContainer/oncontrollerchange The oncontrollerchange property of the ServiceWorkerContainer interface is an event handler ...
- Web/API/ServiceWorkerContainer/onerror The onerror property of the ServiceWorkerContainer interface is an event handler fired whenever ...
- Web/API/ServiceWorkerContainer/onmessage The onmessage property of the ServiceWorkerContainer interface is an event handler fired ...
- Web/API/ServiceWorkerContainer/ready The ready read-only property of the ServiceWorkerContainer interface provides a way of delaying ...
- Web/API/ServiceWorkerContainer/register The register() method of the ServiceWorkerContainer interface creates or updates a ...
- Web/API/ServiceWorkerGlobalScope The ServiceWorkerGlobalScope interface of the ServiceWorker API represents the global execution ...
- Web/API/ServiceWorkerGlobalScope/caches The ServiceWorkerGlobalScope.caches read-only property returns the CacheStorage object ...
- Web/API/ServiceWorkerGlobalScope/clients The clients read-only property of the ServiceWorkerGlobalScope interface returns the Clients ...
- Web/API/ServiceWorkerGlobalScope/onactivate The onactivate property of the ServiceWorkerGlobalScope interface is an event handler fired ...
- Web/API/ServiceWorkerGlobalScope/onfetch The onfetch property of the ServiceWorkerGlobalScope interface is an event handler fired ...
- Web/API/ServiceWorkerGlobalScope/oninstall The oninstall property of the ServiceWorkerGlobalScope interface is an event handler fired ...
- Web/API/ServiceWorkerGlobalScope/onmessage The ServiceWorkerGlobalScope.onmessage event of the ServiceWorkerGlobalScope interface is called ...
- Web/API/ServiceWorkerGlobalScope/onnotificationclick The ServiceWorkerGlobalScope.onnotificationclick property is an event handler called whenever ...
- Web/API/ServiceWorkerGlobalScope/onnotificationclose The ServiceWorkerGlobalScope.onnotificationclose property is an event handler called whenever ...
- Web/API/ServiceWorkerGlobalScope/onpush The ServiceWorkerGlobalScope.onpush event of the ServiceWorkerGlobalScope interface is fired ...
- Web/API/ServiceWorkerGlobalScope/onpushsubscriptionchange The ServiceWorkerGlobalScope.onpushsubscriptionchange event of the ServiceWorkerGlobalScope ...
- Web/API/ServiceWorkerGlobalScope/registration The registration read-only property of the ServiceWorkerGlobalScope interface returns a ...
- Web/API/ServiceWorkerGlobalScope/skipWaiting The ServiceWorkerGlobalScope.skipWaiting() method of the ServiceWorkerGlobalScope forces the ...
- Web/API/ServiceWorkerMessageEvent The ServiceWorkerMessageEvent interface of the ServiceWorker API contains information about an ...
- Web/API/ServiceWorkerMessageEvent/data The data read-only property of the ServiceWorkerMessageEvent interface returns the event's data. ...
- Web/API/ServiceWorkerMessageEvent/lastEventId The lastEventID read-only property of the ServiceWorkerMessageEvent interface represents, in ...
- Web/API/ServiceWorkerMessageEvent/origin The origin read-only property of the ServiceWorkerMessageEvent interface returns the origin of ...
- Web/API/ServiceWorkerMessageEvent/ports The ports read-only property of the ServiceWorkerMessageEvent interface returns an array of ...
- Web/API/ServiceWorkerMessageEvent/ServiceWorkerMessageEvent The ServiceWorkerMessageEvent() constructor creates a new ServiceWorkerMessageEvent object instance.
- Web/API/ServiceWorkerMessageEvent/source The source read-only property of the ServiceWorkerMessageEvent returns a reference to the ...
- Web/API/ServiceWorkerRegistration The ServiceWorkerRegistration interface of the ServiceWorker API represents the service worker ...
- Web/API/ServiceWorkerRegistration/active The active property of the ServiceWorkerRegistration interface returns a service worker whose ...
- Web/API/ServiceWorkerRegistration/getNotifications The getNotifications() method of the ServiceWorkerRegistration interface returns a list of the ...
- Web/API/ServiceWorkerRegistration/installing The installing property of the ServiceWorkerRegistration interface returns a service worker ...
- Web/API/ServiceWorkerRegistration/navigationPreload The navigationPreload read-only property of the ServiceWorkerRegistration interface returns the ...
- Web/API/ServiceWorkerRegistration/onupdatefound The onupdatefound property of the ServiceWorkerRegistration interface is an EventListener ...
- Web/API/ServiceWorkerRegistration/periodicSync The periodicSync read-only property of the ServiceWorkerRegistration interface returns a ...
- Web/API/ServiceWorkerRegistration/pushManager The pushManager property of the ServiceWorkerRegistration interface returns a reference to the ...
- Web/API/ServiceWorkerRegistration/scope The scope read-only property of the ServiceWorkerRegistration interface returns a unique ...
- Web/API/ServiceWorkerRegistration/showNotification The showNotification() method of the ServiceWorkerRegistration interface creates a notification ...
- Web/API/ServiceWorkerRegistration/sync The sync property of the ServiceWorkerRegistration interface returns a reference to the ...
- Web/API/ServiceWorkerRegistration/unregister The unregister method of the ServiceWorkerRegistration interface unregisters the service worker ...
- Web/API/ServiceWorkerRegistration/update The update method of the ServiceWorkerRegistration interface attempts to update the service ...
- Web/API/ServiceWorkerRegistration/waiting The waiting property of the ServiceWorkerRegistration interface returns a service worker whose ...
- Web/API/Service_Worker_API A service worker is an event-driven worker registered against an origin and a path. It takes the ...
- Web/API/ShadowRoot The ShadowRoot interface of the Shadow DOM API is the root node of a DOM subtree that is ...
- Web/API/ShadowRoot/host The host read-only property of the ShadowRoot returns the DOM element to which the ShadowRoot is ...