Skip to content

Instantly share code, notes, and snippets.

@mweppler
Created October 4, 2011 02:34
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mweppler/1260779 to your computer and use it in GitHub Desktop.
Replace images on a page with kittens (boredom)...
if (jQuery) (function($){
jQuery('img').each(function() {
jQuery(this).attr('src', 'http://placekitten.com/g/'+jQuery(this).width()+'/'+jQuery(this).height());
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment