Skip to content

Instantly share code, notes, and snippets.

@itsbalamurali
Created July 29, 2014 18:56
Show Gist options
  • Save itsbalamurali/33f4573e2142cfd540f4 to your computer and use it in GitHub Desktop.
Save itsbalamurali/33f4573e2142cfd540f4 to your computer and use it in GitHub Desktop.
js to get all hrefs in page
var links = document.getElementsByTagName('a');
var a = [];
for(var i = 0; i< links.length; i++){
a.push(links[i].href);
// alert(links[i].href);
}
window.prompt("Copy to clipboard: Ctrl+C, Enter", a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment