THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

oncanplaythrough Event

Event Object Reference Event Object

Example

Execute a JavaScript when a video can be played all the way through, without stopping:

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

More "Try it Yourself" examples below.


Definition and Usage

The oncanplaythrough event occurs when the browser estimates it can play through the specified media without having to stop for buffering.

During the loading process of an audio/video, the following events occur, in this order:

  1. onloadstart
  2. ondurationchange
  3. onloadedmetadata
  4. onloadeddata
  5. onprogress
  6. oncanplay
  7. oncanplaythrough

Browser Support

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

Event
oncanplaythrough Yes 9.0 Yes Yes Yes

Syntax

In HTML:

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

In JavaScript:

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

In JavaScript, using the addEventListener() method:

object.addEventListener("canplaythrough", 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 can be played all the way through, without stopping:

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

Event Object Reference Event Object