HTML | DOM onplaying Event
The DOM onplaying event occurs when the audio/video is paused and playing after the buffer.
Syntax:
- In HTML:
<element onplaying="myScript">
- In JavaScript:
object.onplaying = function(){myScript};
- In JavaScript, using the addEventListener() method:
object.addEventListener("playing", myScript);
Example: Using the addEventListener() method
<!DOCTYPE html> < html > < head > < title > HTML DOM onplaying Event </ title > </ head > < body > < center > < h1 style = "color:green" > GeeksforGeks </ h1 > < h2 >HTML DOM onplaying Event</ h2 > < video controls id = "vidID" width = "320" height = "240" > < source src = type = "video/mp4" > </ video > < script > document.getElementById( "vidID").addEventListener("playing", GFGfun); function GFGfun() { alert("Video playing"); } </ script > </ center > </ body > </ html > |
chevron_right
filter_none
Output:
- Before playing:
- After playing:
Supported Browsers: The browsers supported by HTML DOM onplaying Event are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Apple Safari
- Opera
Recommended Posts:
- HTML | DOM onclick Event
- HTML | DOM oncut Event
- HTML | DOM oncopy Event
- HTML | DOM oncontextmenu Event
- HTML | DOM onchange Event
- HTML | DOM ontoggle Event
- HTML | DOM ondurationchange Event
- HTML | DOM onstalled Event
- HTML | DOM onmouseleave Event
- HTML | DOM ondragstart Event
- HTML | DOM ondblclick Event
- HTML | DOM ondragend Event
- HTML | DOM ondragenter Event
- HTML | DOM ondrop Event
- HTML | DOM onfocusout Event
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.