FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

Audio error Property

Audio Object Reference Audio Object

Example

Get the error state of an audio:

var x = document.getElementById("myAudio").error.code;
Try it Yourself »

Definition and Usage

The error property returns a MediaError object.

The MediaError object has a code property containing the error state of the audio.

Note: This property is read-only.


Browser Support

Property
error Not supported 9.0 Not supported Not supported Not supported

Syntax

audioObject.error.code

Return Value

Type Description
Number The code property of the MediaError Object returns a number representing the error state of the audio:
  • 1 = MEDIA_ERR_ABORTED - fetching process aborted by user
  • 2 = MEDIA_ERR_NETWORK - error occurred when downloading
  • 3 = MEDIA_ERR_DECODE - error occurred when decoding
  • 4 = MEDIA_ERR_SRC_NOT_SUPPORTED - audio not supported

Audio Object Reference Audio Object