THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

onplaying Event

Event Object Reference Event Object

Example

Execute a JavaScript when a video is ready to start after having been paused:

<video onplaying="myFunction()">
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The onplaying event occurs when the audio/video is playing after having been paused or stopped for buffering.


Browser Support

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

Event
onplaying Yes 9.0 Yes Yes Yes

Syntax

In HTML:

<element onplaying="myScript">
Try it Yourself »

In JavaScript:

object.onplaying=function(){myScript};
Try it Yourself »

In JavaScript, using the addEventListener() method:

object.addEventListener("playing", myScript);
Try it Yourself »

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

Examples

More Examples

Example

Execute a JavaScript when an audio is ready to start after having been paused:

<audio onplaying="myFunction()">
Try it Yourself »

Event Object Reference Event Object