Thursday, March 3, 2011

How to redirect your blogger to other site

0 comments
In this post you can put some time and and redirect your
blogger to other site.

1. Log in to blogger  and Go to Design >> Page Element

2.Click Add Gadget and select 'HTML/Javascript'

3. Paste below code 

<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.bloggertrix.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>

4.   Replace  var target URL  with redirect URL
      Replace var countdownfrom value for your like. (redirect time)

5.Click Save you are done.

Leave a Reply

Related Posts Plugin for WordPress, Blogger...