For example on my blog i'd have to make a new blog from my past blog. From www.make-a-simple.blogspot.com to www.kauleea.blogspot.com
This code :
<div id="timer"></div>
<script type="text/javascript">
var time = 5;
function redirect()
{var timer=document.getElementById('timer');
timer.innerHTML = time + 'second';
time = time -1;
if(time==0)
{window.location = "http://kauleea.blogspot.com";}
else
{setTimeout(redirect(),1000);}
}
redirect();
</script>
to make that code work : Erase all Space and Enter.
Thanks to SyaBac
0 comments