Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Created January 6, 2014 15:49
Show Gist options
  • Save unknownuser88/8284756 to your computer and use it in GitHub Desktop.
Save unknownuser88/8284756 to your computer and use it in GitHub Desktop.
$("img").error....
$(document).ready(function(){
$("img").error(function(){
$("img").replaceWith("<p>Error loading image!</p>");
});
$("button").click(function(){
$("img").error();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment