jimboone New member Nov 24, 2007 205 2 0 48 Aug 26, 2009 #1 Is there an easy script to put on the site page to make all links get redirected to a lets say anonym.to thanks
Is there an easy script to put on the site page to make all links get redirected to a lets say anonym.to thanks
Houdas Member Dec 18, 2006 745 19 18 Aug 27, 2009 #2 Easy in jQuery: Code: $(document).ready(function(){ $("a").click(function(){ location.href = "http://anonym.to/?" + $(this).attr('href'); return false; }); });
Easy in jQuery: Code: $(document).ready(function(){ $("a").click(function(){ location.href = "http://anonym.to/?" + $(this).attr('href'); return false; }); });