LordRogaine wrote:Thanks. Quick question. Do I have to put this as part of the body tag or can I just put it within the body tags and script tags?
yeah...you can just do something like this:
<body>
<script type="text/javascript">
setTimeout("location.href='your_page.php'",10000);
</script>
or
<body onload="reloadTimer()">
<script type="text/javascript">
function reloadTimer()
{
setTimeout("location.href='your_page.php'",10000)
}
</script>