দি অপেক্ষারত৷ এট্রিবিউট ট্রিগার করে যখন একটি ভিডিও বিরাম দেয় এবং বাফার পুনরায় চালু হয়। আপনি অপেক্ষারত বাস্তবায়ন করতে নিম্নলিখিত কোড চালানোর চেষ্টা করতে পারেন বৈশিষ্ট্য −
উদাহরণ
<!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>