द इंतजार कर रहा है विशेषता तब ट्रिगर होती है जब कोई वीडियो रुकता है और बफ़र्स फिर से शुरू होता है। ऑनवेटिंग . को लागू करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं विशेषता -
उदाहरण
<!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>