Skip to content

Instantly share code, notes, and snippets.

@benhowdle89
Created October 14, 2013 13:43
Show Gist options
  • Save benhowdle89/6975823 to your computer and use it in GitHub Desktop.
Save benhowdle89/6975823 to your computer and use it in GitHub Desktop.
Displays all images on a page on sites like http://bukk.it for example. Run in console or make a Bookmarklet.
var a=document.links;i=0;for(l=a.length;i<l;i++){var b=new Image;b.src=a[i].href;a[i].insertBefore(b)};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment