Javascript Redirect new tab

angeal

Junior Member
Joined
Dec 23, 2009
Messages
151
Reaction score
23
I`ve been searching over this forum about javascript redirect, but i can`t find it. The example u can see on piratebay.

Anybody willing to share the script?
 
I would be very surprised to find out that TPB didn't use a 301 redirect for their domain change .org --> .se
 
There are many ways to redirect with javascript:

location.replace('yoursitelink');
location.href = "yoursitelink";
 
Back
Top