Last active
April 5, 2016 20:46
-
-
Save pandeybk/b92a924826235d02fc0072ba37077f9b to your computer and use it in GitHub Desktop.
get all links and post to console
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
// get all links and post to console | |
var arr = [], links = document.links; | |
for(var i = 0; i < links.length; i++) { | |
arr.push(links[i].href); | |
} | |
console.log(arr.join('\n')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment