Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var a=document.getElementsByTagName("a");
  2. for(var i=0;i<a.length;i++) {
  3. if(!a[i].onclick && a[i].getAttribute("target") != "_blank") {
  4. a[i].onclick=function() {
  5. window.location=this.getAttribute("href");
  6. return false;
  7. }
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement