Skip to content

Instantly share code, notes, and snippets.

@adkatrit
Last active December 23, 2015 02:39
Show Gist options
  • Save adkatrit/6568221 to your computer and use it in GitHub Desktop.
Save adkatrit/6568221 to your computer and use it in GitHub Desktop.
extract and view any posted images from tumblr
$("body").html("");
(function getPage(cursor){
$.get('/page/'+cursor,function(b){
imgs = $(b).find('img')
imgs.each(function(n){
$("body").append(this)
})
if(imgs.length){
getPage(++cursor)
}
})
})(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment