HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> video{ width:100%; height:330px } </style> </head> <body> <video onprogress="myFunction()" controls> <source src="/hawk.mp4" type="video/mp4"> </video> <script> function myFunction(){ alert("Video is downloading"); } </script> <p><strong>Note</strong>: While clicking 'ok' in alert pop up, keep your eye's on video's seekbar</p> </body> </html>
OUTPUT
×

Save as Private