script redirect

jimboone

New member
Nov 24, 2007
205
2
0
48
Is there an easy script to put on the site page to make all links get redirected to a lets say anonym.to

thanks
 


Easy in jQuery:

Code:
  $(document).ready(function(){  
    $("a").click(function(){
       location.href = "http://anonym.to/?" + $(this).attr('href'); 
       return false;
    });
  });