HTMLMediaElement: abort event

The abort event is fired when the resource was not fully loaded, but not as the result of an error.

Bubbles No
Cancelable No
Interface Event
Event handler property onabort

Examples

const video = document.querySelector('video');
const videoSrc = 'https://example.org/path/to/video.webm';

video.addEventListener('abort', () => {
  console.log(`Abort loading: ${videoSrc}`);
});

const source = document.createElement('source');
source.setAttribute('src', videoSrc);
source.setAttribute('type', 'video/webm');

video.appendChild(source);

Specifications

Specification
HTML Standard
# event-media-abort

Browser compatibility

BCD tables only load in the browser

See also