- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- 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 reached the end of HTML?
Use the onended attribute in HTML to execute a script when the media has reached the end in HTML . You can add messages like “Thank you for watching”, “Stay tuned!”, etc.
Example
You can try to run the following code to implement the onended attribute −
<!DOCTYPE HTML> <html> <body> <video width = "300" height = "200" controls onended = "display()"> <source src = "/html5/foo.ogg" type = "video/ogg" /> Your browser does not support the video element. </video> <script> function display() { alert ("Thank you for watching! Stay tuned!"); } </script> </body> </html>
- Related Articles
- Execute a script when the media has started playing in HTML?
- Execute a script when the playback position of the media has changed in HTML?
- Execute a script when the length of the media changes in HTML?
- Execute a script when the media has paused but is expected to resume in HTML?
- Execute a script when media data is loaded in HTML?
- Execute a script when the media is ready to start playing in HTML?
- Execute a script when a page has unloaded in HTML?
- Execute a script when the browser is in the process of getting the media data in HTML?
- Execute a script when the media is paused either by the user or programmatically in HTML?
- How to execute the script when the page has finished parsing 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 file is unavailable in HTML?
- Execute a script when the element is invalid in HTML?
- Execute a script when the element loses focus in HTML?

Advertisements