The error event is fired when the resource could not be loaded due to an error (for example, a network connectivity problem).
| Bubbles | No |
| Cancelable | No |
| Interface | Event
|
| Event handler property | onerror
|
Examples
const video = document.querySelector('video');
const videoSrc = 'https://path/to/video.webm';
video.addEventListener('error', () => {
console.error(`Error loading: ${videoSrc}`);
});
video.setAttribute('src', videoSrc);
Specifications
| Specification | Status |
|---|---|
| HTML Living Standard | Living Standard |
| HTML5 | Recommendation |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
error event
|
Chrome
Full support Yes |
Edge
Full support ≤79 |
Firefox
Full support Yes |
IE
? |
Opera
Full support Yes |
Safari
? |
WebView Android
Full support Yes |
Chrome Android
Full support Yes |
Firefox Android
Full support Yes |
Opera Android
? |
Safari iOS
? |
Samsung Internet Android
Full support Yes |
Legend
- Full support
- Full support
- Compatibility unknown
- Compatibility unknown
See also
HTMLMediaElement: error event by Mozilla Contributors is licensed under CC-BY-SA 2.5.