Skip to content

Instantly share code, notes, and snippets.

@jney
Created December 8, 2009 09:59
Show Gist options
  • Save jney/251553 to your computer and use it in GitHub Desktop.
Save jney/251553 to your computer and use it in GitHub Desktop.
$.fn.fixImgSrc = function(img){
$(this).each(function(){
var $that = $(this);
$(this).error(function() {
$that.attr("src",img);
});
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment