Skip to content

Instantly share code, notes, and snippets.

@junquera
Created February 18, 2016 10:29
Show Gist options
  • Select an option

  • Save junquera/834b009e1eb77bd4f0f2 to your computer and use it in GitHub Desktop.

Select an option

Save junquera/834b009e1eb77bd4f0f2 to your computer and use it in GitHub Desktop.
Get all images from a web page
$('body').append($('img').map(function(){
return $(this).attr('src')
}).get())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment