[quote=---xXirukiTepe---]
nice script!
did it solve d problem abt. enter page?
cos i tried it before... my page is always redirecting back to the enter page,
....and i cant go to my page[/quote]
If you are having problem with the ENTER PAGE, try to separate the ENTER PAGE script with your main JS script by using JS injection. So the final script will be like this :
[quote]var myplace = document.location.href;
if (myplace == "http://profiles.friendster.com/user.php?uid=[b]YOUR FRIENDSTER ID[/b]"){
}
else if (myplace == "http://profiles.friendster.com/user.php?uid=[b]YOUR FRIENDSTER ID[/b]"){
}
else {
location.href = "[b]URL ENTER.HTML[/b]";
}
//js injection
var myjs = document.createElement("script");
myjs.type = "text/javascript";
myjs.src = "[b]YOUR MAIN JS URL[/b]";
document.getElementsByTagName("head")[0].appendChild(myjs);[/quote]
This script will work because the ENTER PAGE redirect our profile to another window. Slightly different from the original ENTER PAGE script by [b]Tazmaine[/b] which redirect our profile into the same window
Last edited by KaNaLiTnUk (2008-02-27 14:18:49)