Sure, how about this:
HTML Code:
<script type="text/javascript">
function redirectPage(tme, url){
if(new Date().getMinutes() < 10)
var time = new Date().getHours() + ":0" + new Date().getMinutes();
else
var time = new Date().getHours() + ":" + new Date().getMinutes();
if (time === tme) {
clearInterval(glblInterval);
self.location.href = url;
}
}
//SPECIFY THE TIME IN 24HRS FORMAT HERE AT WHICH THE PAGE NEEDS TO BE REDIRECTED.
var glblInterval = setInterval(function(){ redirectPage('12:30', 'somepage.htm'); }, 1000);
</script>
Bookmarks