How to redirect your blogger to other site
Make your blog to redirect to other site or other webpage as you given time
2.Click Add Gadget and select 'HTML/Javascript'
3. Paste below code
4. Replace var target URL with redirect URL
Replace var countdownfrom value for your like. (redirect time)
5.Click Save you are done.
How to redirect your blogger to other site
1. Log in to blogger and Go to Design >> Page Element
<form name="redirect">
<center>
<font face="Arial"><b>Your site will redirect within<br><br>
<form>
<input type="text" size="3" name="redirect2">
</form>
seconds</b></font>
</center>
<script>
var targetURL="http://www.TOPHACKINGTIPS.BLOGSPOT.com/"
var countdownfrom=10
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>
This entry was posted in
BLOGGER TIPS
.
Bookmark the permalink.