- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Execute a script when the media has paused but is expected to resume in HTML?
The onwaiting attribute triggers when a video pause and buffers to reume again. You can try to run the following code to implement the onwaiting attribute −
Example
<!DOCTYPE html> <html> <body> <h2 id = "test">Play</h2> <video id = "myid" width = "320" height = "176" controls onwaiting = "myFunction()"> <source src = "/html5/foo.ogg" type = "video/ogg" /> <source src = "/html5/foo.mp4" type = "video/mp4" /> Your browser does not support the video element. </video> <script> function myFunction() { document.getElementById("test").innerHTML = "Media resumes again"; } </script> </body> </html>
- Related Articles
- Execute a script when the media is paused either by the user or programmatically in HTML?
- Execute a script when the media has started playing in HTML?
- Execute a script when the media has reached the end of HTML?
- Execute a script when media data is loaded in HTML?
- Execute a script when the playback position of the media has changed in HTML?
- Execute a script when the media is ready to start playing in HTML?
- Execute a script when the length of the media changes in HTML?
- Execute a script when a page has unloaded in HTML?
- Execute a script when the browser is in the process of getting the media data in HTML?
- Execute a script when fetching the media data is stopped before it is completely loaded in HTML?
- Execute a script when the browser is unable to fetch the media data for whatever reason in HTML?
- How to execute the script when the page has finished parsing in HTML?
- Execute a script when the file is unavailable in HTML?
- Execute a script when the element is invalid in HTML?
- Execute a script when the element is finished loading in HTML?

Advertisements