Javascript examples for DOM HTML Element:Audio
The error property returns a MediaError object, which has a code property containing the error state of the audio.
This property is read-only.
Type | Description |
---|---|
Number | The code property of the MediaError Object returns a number representing the error state of the audio: |
The following code shows how to get the error state of an audio:
<!DOCTYPE html> <html> <body> <audio id="myAudio" controls> <source src="mov_broken.ogg" type="audio/ogg"> <source src="mov_broken.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio>//ww w . ja v a2s . com <button onclick="myFunction()">get the error state of the audio</button> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myAudio").error.code; document.getElementById("demo").innerHTML = x; } </script> </body> </html>