Advertisement
nlozovan

Untitled

Mar 17th, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <script>
  2. var yourURL = "flickr.com";
  3. function outLinks() {
  4. var outLink;
  5. if (document.getElementsByTagName('a')) {
  6. for (var i = 0; (outLink = document.getElementsByTagName('a')[i]); i++) {
  7. if (outLink.href.indexOf(yourURL) > 0) {
  8. outLink.setAttribute('target', '_blank');
  9. }
  10. }
  11. }
  12. }
  13. window.onload = outLinks;
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement