Guest User

Untitled

a guest
Jun 18th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function initLinks() {
  2. for (i in document.links) {
  3. link = document.links[i];
  4. if (link.rel && link.rel.indexOf('external')!=-1) {
  5. link.onclick = onExternalLinkActivate;
  6. link.onkeypress = onExternalLinkActivate;
  7. }
  8. }
  9. }
  10.  
  11. function onExternalLinkActivate() {
  12. window.open(this.href);
  13. return false;
  14. }
  15. window.onload = initLinks;
Add Comment
Please, Sign In to add comment