Auto Refresh - javascript

by Dinesh 2012-08-29 07:42:17

<script type="text/JavaScript">
<!--
function timedRefresh(timeoutPeriod) {
setTimeout("location.reload(true);",timeoutPeriod);
}
// -->
</script>


In body,
<body onload="JavaScript:timedRefresh(5000);">

<p>This page will refresh every 5 seconds. This is because we're using the 'onload' event to call our function. We are passing in the value '5000', which equals 5 seconds.</p>
<p>But hey, try not to annoy your users too much with unnecessary page refreshes every few seconds!</p>
969
like
0
dislike
0
mail
flag

You must LOGIN to add comments