खेलने पर का उपयोग करें उपयोगकर्ताओं को यह बताने के लिए विशेषता कि ऑडियो/वीडियो चलना शुरू हो गया है।
उदाहरण
जब मीडिया ने खेलना शुरू किया है तो स्क्रिप्ट को निष्पादित करने का तरीका जानने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <video id = "myid" width = "350" height = "200" controls onplaying = "display()"> <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 display() { alert("Video started playing!"); } </script> </body> </html>