Skip to content

Instantly share code, notes, and snippets.

@tairov
Created October 29, 2013 12:15
Show Gist options
  • Select an option

  • Save tairov/7213578 to your computer and use it in GitHub Desktop.

Select an option

Save tairov/7213578 to your computer and use it in GitHub Desktop.
javascript, snippet, copy img srcs on click
var _allImgs = '';
$("img").on("click", function() {
if (this.width > 600) {
console.log(this.src, this.width, this.height); document._allImgs += "\n" + this.src;
}
});
document._allImgs = '';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment