Articles tagged: API
Found 5012 documents
- Web/API/IDBTransaction Note that as of Firefox 40, IndexedDB transactions have relaxed durability guarantees to ...
- Web/API/IDBTransaction/abort All pending IDBRequest objects created during this transaction have their IDBRequest.error ...
- Web/API/IDBTransaction/db An IDBDatabase object.
- Web/API/IDBTransaction/error A DOMError containing the relevant error. In Chrome 48+/Firefox 58+ this property returns a ...
- Web/API/IDBTransaction/mode An IDBTransactionMode object defining the mode for isolating access to data in the current ...
- Web/API/IDBTransaction/objectStore Every call to this method on the same transaction object, with the same name, returns the same ...
- Web/API/IDBTransaction/ObjectStoreNames The objectStoreNames read-only property of the IDBTransaction interface returns a DOMStringList ...
- Web/API/IDBTransaction/onabort In the following code snippet, we open a read/write transaction on our database and add some ...
- Web/API/IDBTransaction/oncomplete The oncomplete event handler of the IDBTransaction interface handles the complete event, ...
- Web/API/IDBTransaction/onerror In the following code snippet, we open a read/write transaction on our database and add some ...
- Web/API/IDBTransactionSync The IDBTransactionSync interface of the IndexedDB API provides a synchronous transaction on a ...
- Web/API/IDBVersionChangeEvent The IDBVersionChangeEvent interface of the IndexedDB API indicates that the version of the ...
- Web/API/IDBVersionChangeEvent/newVersion A 64-bit integer.
- Web/API/IDBVersionChangeEvent/oldVersion The oldVersion read-only property of the IDBVersionChangeEvent interface returns the old version ...
- Web/API/IDBVersionChangeEvent/version The version property of the IDBVersionChangeEvent interface returns The new version of the ...
- Web/API/IDBVersionChangeRequest The IDBVersionChangeRequest interface the IndexedDB API represents a request to change the ...
- Web/API/IDBVersionChangeRequest/setVersion For older WebKit browsers, call this method before creating or deleting an object store.
- Web/API/IdleDeadline See our complete example in the article Cooperative Scheduling of Background Tasks API.
- Web/API/IdleDeadline/didTimeout The read-only didTimeout property on the IdleDeadline interface is a Boolean value which ...
- Web/API/IdleDeadline/timeRemaining The timeRemaining () method on the IdleDeadline interface returns the estimated number of ...
- Web/API/IIRFilterNode The IIRFilterNode interface of the Web Audio API is a AudioNode processor which implements a ...
- Web/API/IIRFilterNode/getFrequencyResponse undefined
- Web/API/IIRFilterNode/IIRFilterNode The IIRFilterNode() constructor of the Web Audio API creates a new IIRFilterNode object which an ...
- Web/API/ImageBitmap The ImageBitmap interface represents a bitmap image which can be drawn to a canvas without undue ...
- Web/API/ImageBitmap/close The ImageBitmap.close() method disposes of all graphical resources associated with an ImageBitmap.
- Web/API/ImageBitmap/height The read-only ImageBitmap.height property returns the ImageBitmap object's height in CSS pixels.
- Web/API/ImageBitmap/width The read-only ImageBitmap.width property returns the ImageBitmap object's width in CSS pixels.
- Web/API/ImageBitmapFactories The ImageBitmapFactories mixin interface contains utility methods to create an ImageBitmap. ...
- Web/API/ImageBitmapRenderingContext The ImageBitmapRenderingContext interface is a canvas rendering context which only provides the ...
- Web/API/ImageBitmapRenderingContext/transferFromImageBitmap The ImageBitmapRenderingContext.transferFromImageBitmap() method displays the given ImageBitmap ...
- Web/API/ImageCapture The ImageCapture interface of the MediaStream Image Capture API provides an interface for ...
- Web/API/ImageCapture/getPhotoCapabilities The getPhotoCapabilities() method of the ImageCapture interface returns a Promise that resolves ...
- Web/API/ImageCapture/getPhotoSettings The getPhotoSettings() property of the ImageCapture interface returns a Promise that resolves ...
- Web/API/ImageCapture/grabFrame The grabFrame() property of the ImageCapture interface takes a snapshot of the live video in a ...
- Web/API/ImageCapture/ImageCapture The ImageCapture constructor creates a new ImageCapture object which creates a new ImageCapture ...
- Web/API/ImageCapture/takePhoto The takePhoto() method of the ImageCapture interface takes a single exposure using the video ...
- Web/API/ImageCapture/track The track read-only property of the ImageCapture interface returns a reference to the ...
- Web/API/ImageData The ImageData interface represents the underlying pixel data of an area of a canvas element. It ...
- Web/API/ImageData/data The readonly ImageData.data property returns a Uint8ClampedArray representing a one-dimensional ...
- Web/API/ImageData/height The readonly ImageData.height property returns the number of rows in the image data object.
- Web/API/ImageData/ImageData The ImageData() constructor returns a newly instantiated ImageData object build from the typed ...
- Web/API/ImageData/width The readonly ImageData.width property returns the number of pixels per row in the image data object.
- Web/API/Index Found 4066 pages:
- Web/API/IndexedDB_API IndexedDB is a low-level API for client-side storage of significant amounts of structured data, ...
- Web/API/IndexedDB_API/Using_IndexedDB This tutorial walks you through using the asynchronous API of IndexedDB. If you are not familiar ...
- Web/API/InputDeviceCapabilities The InputDeviceCapabilities interface of the Input Device Capabilities API provides information ...
- Web/API/InputEvent The InputEvent interface represents an event notifying of editable content change.
- Web/API/InputEvent/data The data read-only property of the InputEvent interface returns a DOMString with the inserted ...
- Web/API/InputEvent/dataTransfer The dataTransfer read-only property of the InputEvent interface returns a DataTransfer object ...
- Web/API/InputEvent/getTargetRanges The getTargetRanges() property of the InputEvent interface returns an array of static ranges ...
- Web/API/InputEvent/InputEvent The InputEvent() constructor creates a new InputEvent.
- Web/API/InputEvent/inputType The inputType read-only property of the InputEvent interface returns the type of change for ...
- Web/API/InputEvent/isComposing The InputEvent.isComposing read-only property returns a Boolean value indicating if the event is ...
- Web/API/InstallEvent The parameter passed into the oninstall handler, the InstallEvent interface represents an ...
- Web/API/InstallEvent/activeWorker The activeWorker read-only property of the InstallEvent interface returns the ServiceWorker that ...
- Web/API/InstallEvent/InstallEvent The InstallEvent() constructor creates a new InstallEvent object.
- Web/API/InstallTrigger The InstallTrigger interface is an interesting outlier in the Apps API; it's included in this ...
- Web/API/IntersectionObserver The IntersectionObserver interface of the Intersection Observer API provides a way to ...
- Web/API/IntersectionObserver/disconnect The IntersectionObserver method disconnect() stops watching all of its target elements for ...
- Web/API/IntersectionObserver/IntersectionObserver The IntersectionObserver() constructor creates and returns a new IntersectionObserver object.
- Web/API/IntersectionObserver/observe The IntersectionObserver method observe() adds an element to the set of target elements being ...
- Web/API/IntersectionObserver/root The IntersectionObserver interface's read-only root property identifies the Element whose bounds ...
- Web/API/IntersectionObserver/rootMargin The IntersectionObserver interface's read-only rootMargin property is a string with syntax ...
- Web/API/IntersectionObserver/takeRecords The IntersectionObserver method takeRecords() returns an array of IntersectionObserverEntry ...
- Web/API/IntersectionObserver/thresholds The IntersectionObserver interface's read-only thresholds property returns the list of ...
- Web/API/IntersectionObserver/unobserve The IntersectionObserver method unobserve() instructs the IntersectionObserver to stop observing ...
- Web/API/IntersectionObserverEntry The IntersectionObserverEntry interface of the Intersection Observer API describes the ...
- Web/API/IntersectionObserverEntry/boundingClientRect The IntersectionObserverEntry interface's read-only boundingClientRect property returns a ...
- Web/API/IntersectionObserverEntry/intersectionRatio The IntersectionObserverEntry interface's read-only intersectionRatio property tells you how ...
- Web/API/IntersectionObserverEntry/intersectionRect The IntersectionObserverEntry interface's read-only intersectionRect property is a ...
- Web/API/IntersectionObserverEntry/isIntersecting The IntersectionObserverEntry interface's read-only isIntersecting property is a Boolean value ...
- Web/API/IntersectionObserverEntry/rootBounds The IntersectionObserverEntry interface's read-only rootBounds property is a DOMRectReadOnly ...
- Web/API/IntersectionObserverEntry/target The IntersectionObserverEntry interface's read-only target property indicates which targeted ...
- Web/API/IntersectionObserverEntry/time The IntersectionObserverEntry interface's read-only time property is a DOMHighResTimeStamp that ...
- Web/API/Intersection_Observer_API The Intersection Observer API provides a way to asynchronously observe changes in the ...
- Web/API/Intersection_Observer_API/Timing_element_visibility In this article, we'll build a mock blog which has a number of ads interspersed among the ...
- 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/code The KeyboardEvent.code property represents a physical key on the keyboard (as opposed to the ...
- 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/initKeyboardEvent The KeyboardEvent.initKeyboardEvent() initializes the attributes of a keyboard event object. ...
- 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 ...
- Web/API/KeyboardEvent/repeat The KeyboardEvent.repeat read-only property returns a Boolean that is true if the key is being ...
- Web/API/KeyboardEvent/shiftKey The KeyboardEvent.shiftKey read-only property indicates if the shift key was pressed (true) or ...
- Web/API/KeyboardEvent/which The KeyboardEvent.which read-only property returns the numeric keyCode of the key pressed, or ...
- Web/API/KeyframeEffect The KeyframeEffect interface of the Web Animations API lets us create sets of animatable ...
- Web/API/KeyframeEffect/KeyframeEffect The KeyframeEffect() constructor of the Web Animations API returns a new KeyframeEffect object ...
- Web/API/KeyframeEffect/setKeyframes The setKeyframes() method of the KeyframeEffect interface replaces the keyframes that make up ...
- Web/API/KeyframeEffectReadOnly The KeyframeEffectReadOnly interface of the Web Animations API describes sets of animatable ...
- Web/API/KeyframeEffectReadOnly/composite The composite property of a KeyframeEffectReadOnly or a KeyframeEffect resolves how an element's ...
- Web/API/KeyframeEffectReadOnly/getKeyframes The getKeyframes() method of a KeyframeEffectReadOnly or a KeyframeEffect returns an Array of ...