GlobalEventHandlers.oncanplaythrough

The oncanplaythrough property of the GlobalEventHandlers mixin is the EventHandler for processing canplaythrough events.

The canplaythrough event is fired when the user agent can play the media and estimates that enough data has been loaded to play the media up to its end without having to stop for further buffering of content.

Syntax

element.oncanplaythrough = handlerFunction;
var handlerFunction = element.oncanplaythrough;

handlerFunction is either null or a JavaScript function specifying the handler for the event.

Specification

Specification Status Comment
HTML Living Standard
The definition of 'oncanplaythrough' in that specification.
Living Standard

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
oncanplaythroughChrome Full support YesEdge Full support ≤79Firefox Full support YesIE ? Opera ? Safari ? WebView Android Full support YesChrome Android Full support YesFirefox Android Full support YesOpera Android ? Safari iOS ? Samsung Internet Android Full support Yes

Legend

Full support
Full support
Compatibility unknown
Compatibility unknown

See also