The onplay
property of the GlobalEventHandlers
mixin is the event handler for processing play
events.
The onplay
property of the GlobalEventHandlers
mixin is the event handler for processing play
events.
element.onplay = handlerFunction; var handlerFunction = element.onplay;
handlerFunction
should be either null
or a JavaScript function specifying the handler for the event.
<p>This example demonstrates how to assign an "onplay" event to a video element.</p> <video controls onplay="alertPlay()"> <source src="mov_bbb.mp4" type="video/mp4"> <source src="mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video. </video> <p>Video courtesy of <a href="http://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</p> <script> function alertPlay() { alert("The video has started to play."); } </script>
Specification |
---|
HTML Standard # handler-onplay |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
onplay |
32 |
12 |
9 |
9 |
19
≤12.1-15
|
9 |
4.4.3 |
32 |
9 |
19
≤12.1-14
|
9 |
2.0 |
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/onplay