
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
Execute a script when the browser is in the process of getting the media data in HTML?
Use the onprogress attribute to execute a script when the browser is in the process of getting the media data in HTML.
Example
You can try to run the following code to implement onprogress attribute −
<!DOCTYPE html> <html> <body> <video id = "myVideo" width = "320" height = "176" controls onprogress = "display()"> <source src = "/html5/foo.ogg" type = "video/ogg" /> <source src = "/html5/foo.mp4" type = "video/mp4" /> Your browser does not support HTML5 video. </video> <script> function display() { alert("Started"); } </script> </body> </html>
- Related Articles
- Execute a script when the browser is unable to fetch the media data for whatever reason in HTML?
- Execute a script when media data is loaded in HTML?
- Execute a script when the browser window is closed in HTML?
- Execute a script when the length of the media changes in HTML?
- Execute a script when the browser window is being resized in HTML?
- Execute a script when the media has started playing in HTML?
- Execute a script when fetching the media data is stopped before it is completely loaded in HTML?
- Execute a script when the media is ready to start playing in HTML?
- Execute a script when the browser starts to work online in HTML?
- Execute a script when the browser starts to work offline in HTML?
- Execute a script when the media has reached the end of HTML?
- Execute a script when the playback position of the media has changed in HTML?
- Execute a script when the media is paused either by the user or programmatically in HTML?
- Execute a script when the media has paused but is expected to resume in HTML?
- Execute a script when the file is unavailable in HTML?

Advertisements