Redirect Visitors to another Site : Secrets of Blogs



Nice trick to your blogs and webs. You can redirect your visitors to another blog or web site by adding this gadget to your blog. This is very helpful if your blog or web move to other location or new domain. Try this now!

First go to,

Dashboard > Layout > Add a gadget > HTML/Java Script

Now copy these codes to it and save it.


<form name="redirect">
<center>
<font face="Arial"><b>You will be redirected to the script in<br><br>
<form>
<input type="text" size="3" name="redirect2">
</form>
seconds</b></font>
</center>

<script>

var targetURL="http://thegroup14.blogspot.com/"
var countdownfrom=1

var currentsecond=document.redirect.redirect2.value=countdownfrom+1
function countredirect(){
if (currentsecond!=1){
currentsecond-=1
document.redirect.redirect2.value=currentsecond
}
else{
window.location=targetURL
return
}
setTimeout("countredirect()",1000)
}

countredirect()
//-->
</script>


Important :

Change URL ( Put your URL at thegroup14.blogspot.com )

Previous
Next Post »
Thanks for your comment
-->