Results 81 - 100 of 3,929

File.name

Returns the name of the file represented by a File object. For security reasons, the path is excluded from this property.
API File API Files Property Reference Référence

FileError

Represents an error that occurs while using the FileReader interface.
API File API Files Obsolete Reference

FileReader

The FileReader object lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, using File or Blob objects to specify the file or data to read.
API File API Files Interface Reference

FileReader.abort()

The abort method aborts the read operation. Upon return, the readyState will be DONE.
API File API Files Method Reference Référence

FileReader.error

Returns the error that occurred while reading the file.
API File API Files Property Reference

FileReader.readAsBinaryString()

The readAsBinaryString method is used to start reading the contents of the specified Blob or File. When the read operation is finished, the readyState becomes DONE, and the loadend is triggered. At that time, the result attribute contains the raw binary data from the file.
API File API Files Method Reference

FileReader.readAsDataURL()

The readAsDataURL method is used to read the contents of the specified Blob or File. When the read operation is finished, the readyState becomes DONE, and the loadend is triggered. At that time, the result attribute contains  the data as a URL representing the file's data as a base64 encoded string.
API File API Files Method Reference

FileReader.readAsText()

The readAsText method is used to read the contents of the specified Blob or File. When the read operation is complete, the readyState is changed to DONE, the loadend is triggered, and the result attribute contains the contents of the file as a text string.
API File API Files Method Reference Référence

FileReader.readyState

Provides the current state of the reading operation.
API File API Files Property Reference Référence

FileReader.result

Returns the file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
API File API Files Property Reference Référence

FormData.entries()

The FormData.entries() method returns an iterator allowing to go through all key/value pairs contained in this object. The key of each pair is a USVString object; the value either a USVString, or a Blob.
API FormData Iterator Method Reference XMLHttpRequest API

FormData.keys()

The FormData.keys() method returns an iterator allowing to go through all keys contained in this object. The keys are USVString objects.
API FormData Iterator Method Reference XMLHttpRequest API

FormData.values()

The FormData.values() method returns an iterator allowing to go through all values contained in this object. The values are USVString or Blob objects.
API FormData Iterator Method Reference XMLHttpRequest API

Fullscreen API

The Fullscreen API provides an easy way for web content to be presented using the user's entire screen. The API lets you easily direct the browser to make an element and its children, if any, occupy the fullscreen, eliminating all browser user interface and other applications from the screen for the duration.
API DOM Fullscreen API Intermediate JS Tutorial

GainNode

The gain is a unitless value, changing with time, that is multiplied to each corresponding sample of all input channels. If modified, the new gain is applied using a de-zippering algorithm in order to prevent unaesthetic 'clicks' from appearing in the resulting audio.
API GainNode Interface Reference Web Audio API

Gamepad

The Gamepad interface of the Gamepad API defines an individual gamepad or other controller, allowing access to information such as button presses, axis positions, and id.
API Gamepad API Games Interface Reference

GamepadEvent

The GamepadEvent interface of the Gamepad API contains references to gamepads connected to the system, which is what the gamepad events Window.gamepadconnected and Window.gamepaddisconnected are fired in response to.
API Gamepad API Games NeedsBrowserCompatibility Reference Référence

GamepadEvent.gamepad

The GamepadEvent.gamepad property of the GamepadEvent interface returns a Gamepad object, providing access to the associated gamepad data for fired gamepadconnected and gamepaddisconnected events.
API Gamepad API Property Reference Référence