Created
May 12, 2014 07:21
-
-
Save carlosrojaso/2cb27019e5bdaceb4f7e to your computer and use it in GitHub Desktop.
progress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<video id="video1" controls="controls"> | |
<source src="mov_bbb.mp4" type="video/mp4"> | |
<source src="mov_bbb.ogg" type="video/ogg"> | |
Your browser does not support HTML5 video. | |
</video> | |
<script> | |
myVid=document.getElementById("video1"); | |
myVid.onprogress=alert("Downloading video"); | |
</script> | |
<p>Video courtesy of <a href="http://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</p> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment