Created
October 29, 2013 12:15
-
-
Save tairov/7213578 to your computer and use it in GitHub Desktop.
javascript, snippet, copy img srcs on click
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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