Articles tagged: API
Found 5012 documents
- Web/API/FetchEvent/isReload The isReload read-only property of the FetchEvent interface returns true if the event was ...
- Web/API/FetchEvent/navigationPreload The navigationPreload read-only property of the FetchEvent interface returns a Promise that ...
- Web/API/FetchEvent/request The request read-only property of the FetchEvent interface returns the Request that triggered ...
- Web/API/FetchEvent/respondWith The respondWith() method of FetchEvent prevents the browser's default fetch handling, and allows ...
- Web/API/FetchEvent_clone The InstallEvent interface represents an install action that is dispatched on the ...
- Web/API/Fetch_API The Fetch API provides an interface for fetching resources (including across the network). It ...
- Web/API/Fetch_API/Basic_concepts At the heart of Fetch are the Interface abstractions of HTTP Request s, Response s, Headers, and ...
- Web/API/Fetch_API/Using_Fetch This kind of functionality was previously achieved using XMLHttpRequest. Fetch provides a better ...
- Web/API/File The File interface provides information about files and allows JavaScript in a web page to ...
- Web/API/File/File The File() constructor creates a new File object instance.
- 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/File/getAsBinary The getAsBinary method allows to access the file's data in raw binary format.
- Web/API/File/getAsDataURL The getAsDataURL provides a data: URL that encodes the entire contents of the referenced file.
- Web/API/File/getAsText The getAsText method provides the file's data interpreted as text using a given encoding.
- Web/API/File/lastModified The File.lastModified read-only property provides the last modified date of the file as the ...
- Web/API/File/lastModifiedDate The File.lastModifiedDate read-only property returns the last modified date of the file. Files ...
- Web/API/File/mozFullPath A privileged exension to the File interface, the mozFullPath property contains the full pathname ...
- Web/API/File/name Returns the name of the file represented by a File object. For security reasons, the path is ...
- Web/API/File/type Returns the media type (MIME) of the file represented by a File object.
- Web/API/FileEntrySync The FileEntrySync interface of the File System API represents a file in a file system. It lets ...
- Web/API/FileError Represents an error that occurs while using the FileReader interface.
- Web/API/FileException In the File System API, a FileException object represents error conditions that you might ...
- Web/API/FileList An object of this type is returned by the files property of the HTML input element; this lets ...
- Web/API/FileReader The FileReader object lets web applications asynchronously read the contents of files (or raw ...
- Web/API/FileReader/abort The abort method aborts the read operation. Upon return, the readyState will be DONE.
- Web/API/FileReader/error Returns the error that occurred while reading the file.
- Web/API/FileReader/readAsArrayBuffer The FileReader interface's readAsArrayBuffer() method is used to start reading the contents of a ...
- Web/API/FileReader/readAsBinaryString The readAsBinaryString method is used to start reading the contents of the specified Blob or ...
- Web/API/FileReader/readAsDataURL The readAsDataURL method is used to read the contents of the specified Blob or File. When the ...
- Web/API/FileReader/readAsText The readAsText method is used to read the contents of the specified Blob or File. When the read ...
- Web/API/FileReader/readyState Provides the current state of the reading operation.
- Web/API/FileReader/result Returns the file's contents. This property is only valid after the read operation is complete, ...
- Web/API/FileReaderSync The FileReaderSync interface allows to read File or Blob objects in a synchronous way.
- 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/FileSystem The File and Directory Entries API interface FileSystem is used to represent a file system. ...
- Web/API/FileSystem/name The read-only name property of the FileSystem interface indicates the file system's name. This ...
- Web/API/FileSystem/root The read-only root property of the FileSystem interface specifies a FileSystemDirectoryEntry ...
- Web/API/FileSystemDirectoryEntry The FileSystemDirectoryEntry interface of the File and Directory Entries API represents a ...
- Web/API/FileSystemDirectoryEntry/createReader The FileSystemDirectoryEntry interface's method createReader () returns a ...
- Web/API/FileSystemDirectoryEntry/getDirectory The FileSystemDirectoryEntry interface's method getDirectory () returns a ...
- Web/API/FileSystemDirectoryEntry/getFile The FileSystemDirectoryEntry interface's method getFile () returns a FileSystemFileEntry object ...
- Web/API/FileSystemDirectoryEntry/removeRecursively The FileSystemDirectoryEntry interface's method removeRecursively () removes the directory as ...
- Web/API/FileSystemDirectoryReader The FileSystemDirectoryReader interface of the File and Directory Entries API lets you access ...
- Web/API/FileSystemDirectoryReader/readEntries The FileSystemDirectoryReader interface's readEntries() method retrieves the directory entries ...
- Web/API/FileSystemEntry The FileSystemEntry interface of the File and Directory Entries API represents a single in a ...
- Web/API/FileSystemEntry/copyTo The FileSystemEntry interface's method copyTo () copies the file specified by the entry to a new ...
- Web/API/FileSystemEntry/filesystem The read-only filesystem property of the FileSystemEntry interface contains a FileSystem object ...
- Web/API/FileSystemEntry/fullPath The read-only fullPath property of the FileSystemEntry interface returns a USVString specifying ...
- Web/API/FileSystemEntry/getMetadata The FileSystemEntry interface's method getMetadata () obtains a Metadata object with information ...
- Web/API/FileSystemEntry/getParent The FileSystemEntry interface's method getParent () obtains a FileSystemDirectoryEntry.
- Web/API/FileSystemEntry/isDirectory The read-only isDirectory property of the FileSystemEntry interface is true if the entry ...
- Web/API/FileSystemEntry/isFile The read-only isFile property of the FileSystemEntry interface is true if the entry represents a ...
- Web/API/FileSystemEntry/moveTo The FileSystemEntry interface's method moveTo () moves the file specified by the entry to a new ...
- Web/API/FileSystemEntry/name The read-only name property of the FileSystemEntry interface returns a USVString specifying the ...
- Web/API/FileSystemEntry/remove The FileSystemEntry interface's method remove () deletes the file or directory from the file ...
- Web/API/FileSystemEntry/toURL The FileSystemEntry interface's method toURL () creates and returns a string containing a URL ...
- Web/API/FileSystemFileEntry The FileSystemFileEntry interface of the File System API represents a file in a file system. It ...
- Web/API/FileSystemFileEntry/createWriter The FileSystemFileEntry interface's method createWriter() returns a FileWriter object which can ...
- Web/API/FileSystemFileEntry/file The FileSystemFileEntry interface's method file () returns a File object which can be used to ...
- Web/API/FileSystemFlags The FileSystemFlags dictionary defines a set of values which are used when specifying option ...
- Web/API/FileSystemFlags/create The create property on the FileSystemFlags dictionary is used to indicate whether or not the ...
- Web/API/FileSystemFlags/exclusive The exclusive property on the FileSystemFlags dictionary is used in tandem with the create ...
- Web/API/FileSystemSync In the File System API, a FileSystemSync object represents a file system. It has two properties.
- Web/API/File_and_Directory_Entries_API The File and Directory Entries API simulates a local file system that web apps can navigate ...
- Web/API/File_and_Directory_Entries_API/Firefox_support The original File System API was created to let browsers implement support for accessing a ...
- Web/API/File_and_Directory_Entries_API/Introduction The File and Directory Entries API simulates a local file system that web apps can navigate ...
- Web/API/File_Handle_API The FileHandle API allows for the manipulating of files, including creating files and modifying ...
- Web/API/FocusEvent The FocusEvent interface represents focus-related events like focus, blur, focusin, or focusout.
- Web/API/FocusEvent/FocusEvent The FocusEvent() constructor returns a newly created FocusEvent object with an optional ...
- Web/API/FocusEvent/relatedTarget The FocusEvent.relatedTarget read-only property represents a secondary target for this event, ...
- Web/API/FontFace The FontFace interface represents a single usable font face. It allows control of the source of ...
- Web/API/FontFaceSet The FontFaceSet interface of the CSS Font Loading API manages the loading of font-faces and ...
- Web/API/FontFaceSet/check A Boolean that is true if the font list is available
- Web/API/FontFaceSet/load A Promise of an Array of FontFace loaded. The promise is fulfilled when all the fonts are ...
- Web/API/FontFaceSet/ready The ready readonly property of the FontFaceSet interface returns a Promise that resolves to the ...
- Web/API/FontFaceSetLoadEvent The FontFaceSetLoadEvent interface of the the Css Font Loading API is fired whenever a ...
- Web/API/FontFaceSetLoadEvent/fontfaces The fontfaces read-only property of the FontFaceLoadEventInit interface returns an array of ...
- Web/API/FontFaceSetLoadEvent/FontFaceSetLoadEvent The FontFaceSetLoadEvent constructor creates a new FontFaceLoadEvent object which is fired ...
- Web/API/FormData The FormData interface provides a way to easily construct a set of key/value pairs representing ...
- Web/API/FormData/append The append() method of the FormData interface appends a new value onto an existing key inside a ...
- Web/API/FormData/delete The delete() method of the FormData interface deletes a key and its value(s) from a FormData object.
- Web/API/FormData/entries The FormData.entries() method returns an iterator allowing to go through all key/value pairs ...
- Web/API/FormData/FormData The FormData() constructor creates a new FormData object.
- Web/API/FormData/get The get() method of the FormData interface returns the first value associated with a given key ...
- Web/API/FormData/getAll The getAll() method of the FormData interface returns all the values associated with a given key ...
- Web/API/FormData/has The has() method of the FormData interface returns a boolean stating whether a FormData object ...
- Web/API/FormData/keys The FormData.keys() method returns an iterator allowing to go through all keys contained in this ...
- Web/API/FormData/set The set() method of the FormData interface sets a new value for an existing key inside a ...
- Web/API/FormData/values The FormData.values() method returns an iterator allowing to go through all values contained in ...
- Web/API/Fullscreen_API The Fullscreen API provides an easy way for web content to be presented using the user's entire ...
- Web/API/GainNode The GainNode interface represents a change in volume. It is an AudioNode audio-processing module ...
- Web/API/GainNode/gain An AudioParam.
- Web/API/GainNode/GainNode The GainNode() constructor of the Web Audio API creates a new GainNode object which an AudioNode ...
- Web/API/Gamepad The Gamepad interface of the Gamepad API defines an individual gamepad or other controller, ...
- Web/API/Gamepad/axes The Gamepad.axes property of the Gamepad interface returns an array representing the controls ...
- Web/API/Gamepad/buttons The Gamepad.buttons property of the Gamepad interface returns an array of gamepadButton objects ...
- Web/API/Gamepad/connected The Gamepad.connected property of the Gamepad interface returns a boolean indicating whether the ...