THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

onstalled Event

Event Object Reference Event Object

Example

Execute a JavaScript when the browser is trying to get media data, but data is not available:

<video onstalled="myFunction()">


Definition and Usage

The onstalled 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
onstalled 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);

Note: The addEventListener() method is not supported in Internet Explorer 8 and earlier versions.


Technical Details

Bubbles: No
Cancelable: No
Event type: Event
Supported HTML tags: <audio> and <video>
DOM Version: Level 3 Events

Event Object Reference Event Object