Horje

Example of HTML onprogress Event Attribute

It will execute a JavaScript when the video is downloading.
index.html
Example: HTML
 <script>
function myFunction() {
  alert('Downloading video');
}
</script>

<video onprogress="myFunction()"> 

Output should be:

Example of HTML onprogress Event Attribute




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Media Events Attribute
Uploaded by:
Admin