Created
November 4, 2010 23:46
-
-
Save brehaut/663412 to your computer and use it in GitHub Desktop.
A bookmarklet to open all the links in the current selection in new windows/tabs.
This file contains 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
/* | |
Open all selected links. | |
Paste the following line into the address of a bookmark in your browser: | |
javascript:(function%20()%20%7B%0A%20%20%20%20try%20%7B%20%0A%20%20%20%20%20%20%20%20var%20as%20=%20getSelection().getRangeAt(0).commonAncestorContainer.getElementsByTagName('a');%0A%0A%20%20%20%20%20%20%20%20for%20(var%20i%20=%200;%20i%20%3C%20as.length;%20i++)%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20el%20=%20as%5Bi%5D;%0A%20%20%20%20%20%20%20%20%20%20%20%20if%20(el.href)%20window.open(el.href);%0A%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%7D%20catch%20(e)%20%7B%20//%20lets%20pretend%20this%20never%20happened%0A%20%20%20%20%7D%0A%7D)(); | |
*/ | |
(function () { | |
try { | |
var as = getSelection().getRangeAt(0).commonAncestorContainer.getElementsByTagName('a'); | |
for (var i = 0; i < as.length; i++) { | |
var el = as[i]; | |
if (el.href) window.open(el.href); | |
} | |
} catch (e) { // lets pretend this never happened | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment