Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- javascript:(function(){ var n_to_open,dl,dll,i; var got = {}; function linkIsSafe(u) { if (u.substr(0,7)=='mailto:') return false; if (u.substr(0,11)=='javascript:') return false; if (got[u]==1) return false; got[u] = 1; return true; } n_to_open = 0; dl = document.links; dll = dl.length; for(i = 0; i < dll; ++i) { if (linkIsSafe(dl[i].href)) ++n_to_open; } if (!n_to_open) { alert ('no links found'); } else { if (confirm('Open ' + n_to_open + ' links in new windows?')) { for (var url in got) { window.open(url); } } } })();
Advertisement
Add Comment
Please, Sign In to add comment