Created
August 10, 2012 18:53
-
-
Save tkadlec/3316747 to your computer and use it in GitHub Desktop.
Determine if image has been downloaded
This file contains 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
var myImage = new Image(); | |
myImage.src = "http://somedomain.com/image2.png"; | |
if (myImage.complete) { | |
//already downloaded | |
} else { | |
//not yet downloaded | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment