Sunday, July 20, 2014

Blogger Auto refresh Trick | Indihack

Blogger Auto refresh Trick

http://blogspc.com/wp-content/uploads/2011/12/Auto-Refresh-Plus.jpg 

Copy the code given below and Go to layout and select Html/Java script and paste the code Approximate auto refresh is 05:05 min You can set wht time is required for you .

<!-- START trickstoo Auto reflesh-->
<script>
<!--

/*
Auto Refresh Page with Time script
By Indihack.net
Over 200+ free scripts here!
*/

//enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59
var limit="05:05"

if (document.images){
var parselimit=limit.split(":")
parselimit=parselimit[0]*60+parselimit[1]*1
}
function beginrefresh(){
if (!document.images)
return
if (parselimit==1)
window.location.reload()
else{
parselimit-=1
curmin=Math.floor(parselimit/60)
cursec=parselimit%60
if (curmin!=0)
curtime=curmin+" minutes and "+cursec+" seconds left until page refresh!"
else
curtime=cursec+" seconds left until page refresh!"
window.status=curtime
setTimeout("beginrefresh()",1000)
}
}

window.onload=beginrefresh
//-->
</script>

0 comments:

Post a Comment