
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
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 is ready to start playing in HTML?
Use the oncanplay attribute to define when an audio/ video is ready to start playing.
Example
You can try to run the following code to learn how to execute a script when the media is ready to start playing −
<!DOCTYPE html> <html> <body> <video id = "myid" width = "320" height = "176" controls oncanplay="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 loaded!"); } </script> </body> </html>
- Related Questions & Answers
- Execute a script when a file is ready to start playing in HTML?
- Execute a script when the media has started playing in HTML?
- Execute a script when media data is loaded in HTML?
- Execute a script when the length of the media changes in HTML?
- Execute a script when the media has reached the end of HTML?
- Execute a script when the media has paused but is expected to resume in HTML?
- Execute a script when the media is paused either by the user or programmatically in HTML?
- Execute a script when the playback position of the media has changed in HTML?
- Execute a script when the browser is in the process of getting the media data in HTML?
- Execute a script when the element is invalid in HTML?
- Execute a script when the file is unavailable in HTML?
- Execute a script when fetching the media data is stopped before it is completely loaded in HTML?
- Execute a script when the browser is unable to fetch the media data for whatever reason in HTML?
- Execute a script when the element is finished loading in HTML?
- Execute a script when the element is being clicked in HTML?
Advertisements