Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML Audio/Video DOM stalled Event

❮ HTML Audio/Video DOM Reference

Example

If the browser is not able to fetch media data, alert that media data is not available:

var vid = document.getElementById("myVideo");
vid.onstalled = function() {
    alert("Media data is not available");
};


Definition and Usage

The stalled event occurs when the browser is trying to get media data, but data is not available.

Tip: Related events that occurs when there is some kind of disturbance to the media loading process, are:


Browser Support

The numbers in the table specify the first browser version that fully supports the event.

Event
stalled Yes 9.0 Yes Yes Yes

Syntax

In HTML:

<element onstalled="myScript">

In JavaScript:

object.onstalled=function(){myScript};

In JavaScript, using the addEventListener() method:

object.addEventListener("stalled", myScript);

Technical Details

Supported HTML tags: <audio> and <video>
Supported JavaScript objects: Audio, Video

❮ HTML Audio/Video DOM Reference