Skip to content

Instantly share code, notes, and snippets.

@minhd
Created September 3, 2012 05:04
Show Gist options
  • Save minhd/3606826 to your computer and use it in GitHub Desktop.
Save minhd/3606826 to your computer and use it in GitHub Desktop.
jquery quick cache img
//cache the user img
$('img').hide().appendTo('body').one('load', function() {
   console.log('Image: '+$(this).attr('src')+' is cached...');
   $(this).remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment