ऑनसीड विशेषता एक स्क्रिप्ट को निष्पादित करती है जब उपयोगकर्ता ऑडियो या वीडियो में एक नई स्थिति को छोड़ देता है या स्थानांतरित हो जाता है।
उदाहरण
ऑनसीकेड एट्रिब्यूट को लागू करने के लिए आप निम्न कोड को चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <h2 id = "test">Play</h2> <video id = "myid" width = "320" height = "176" controls onseeked = "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 = "Current position: " + document.getElementById("myid").currentTime; } </script> </body> </html>