Aborts the read operation.
Aborts the read operation. Upon return, the readyState will be DONE.
MDN
The EventTarget.addEventListener() method registers the specified listener on the EventTarget it's called on.
The EventTarget.addEventListener() method registers the specified listener on the EventTarget it's called on. The event target may be an Element in a document, the Document itself, a Window, or any other object that supports events (such as XMLHttpRequest).
MDN
Dispatches an Event at the specified EventTarget, invoking the affected EventListeners in the appropriate order.
Dispatches an Event at the specified EventTarget, invoking the affected EventListeners in the appropriate order. The normal event processing rules (including the capturing and optional bubbling phase) apply to events dispatched manually with dispatchEvent().
MDN
A DOMError representing the error that occurred while reading the file.
A DOMError representing the error that occurred while reading the file.
MDN
A handler for the abort event.
A handler for the abort event. This event is triggered each time the reading operation is aborted.
MDN
A handler for the error event.
A handler for the error event. This event is triggered each time the reading operation encounter an error.
MDN
A handler for the load event.
A handler for the load event. This event is triggered each time the reading operation is successfully completed.
MDN
A handler for the loadend event.
A handler for the loadend event. This event is triggered each time the reading operation is completed (either in success or failure).
MDN
A handler for the loadstart event.
A handler for the loadstart event. This event is triggered each time the reading is starting.
MDN
A handler for the progress event.
A handler for the progress event. This event is triggered while reading a Blob content.
MDN
The readAsArrayBuffer method is used to starts reading the contents of the specified Blob or File.
The readAsArrayBuffer method is used to starts 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 an ArrayBuffer representing the file's data.
MDN
The readAsDataURL method is used to starts reading the contents of the specified Blob or File.
The readAsDataURL method is used to starts 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 a data: URL representing the file's data as base64 encoded string.
MDN
The readAsText method is used to read the contents of the specified Blob or File.
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.
MDN
A number indicating the state of the FileReader.
A number indicating the state of the FileReader. This will be one of the State constants. EMPTY : 0 : No data has been loaded yet. LOADING : 1 : Data is currently being loaded. DONE : 2 : The entire read request has been completed.
MDN
Removes the event listener previously registered with EventTarget.addEventListener.
Removes the event listener previously registered with EventTarget.addEventListener.
MDN
The file's contents.
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.
MDN
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.
MDN