Guest User

Untitled

a guest
Jan 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function testImage(URL) {
  2. var tester=new Image();
  3. tester.onLoad=isGood;
  4. tester.onError=isBad;
  5. tester.src=URL;
  6. }
  7.  
  8. function isGood() {
  9. alert('That image exists!');
  10. }
  11.  
  12. function isBad() {
  13. alert('That image does no exist!');
  14. }
  15. testImage("Provino11.png");
Add Comment
Please, Sign In to add comment