Skip to content

Instantly share code, notes, and snippets.

@matthewfranglen
Created July 18, 2014 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthewfranglen/5a743f956c05978916c1 to your computer and use it in GitHub Desktop.
Save matthewfranglen/5a743f956c05978916c1 to your computer and use it in GitHub Desktop.
Imgur images without cookies
$('img').each(function (i, e) { $(e).attr("src", $(e).attr("data-src")); });
@matthewfranglen
Copy link
Author

javascript:void($('img').each(function(i,e){$(e).attr("src",$(e).attr("data-src"));})); is a bookmarklet of the above.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment