HTML Audio/Video DOM error Property
Example
var vid = document.getElementById("myVideo");
function myFunction() {
alert(vid.error.code);
}
Meaning
The error property returns a MediaError object representing the error state of the audio/video.
Standard Syntax
audio|video.error.code
Advertisement
Return Value
| Type | Description |
|---|---|
| number | The code property of the MediaError Object returns a number representing the error state of the audio/video.
|