 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- 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 started playing in HTML?
Use the onplaying attribute to let users know that the audio/ video started playing.
Example
You can try to run the following code to learn how to execute a script when the media has started playing −
<!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>Advertisements
 