Re: Just Paste at your JS ext..
[quote]//Redirect To other sites
function getgoing()
{
top.location="[color=blue]http://theftalk.com[/color]";
}
if (top.frames.length==0)
{
[quote=j0ey1510]how if i will remove the alert message.. only to redirect.. what is the code?[/quote]
try this one..
[quote]//Redirect To other sites
function getgoing()
{
top.location="http://theftalk.com";
}
if (top.frames.length==0)
{
setTimeout('getgoing()',3000);
}[/quote]
just remove the [b]alert("")[/b]..