how to make a javascript that reloads website every secound code example
Example 1: javascript refresh page every 30 seconds
setTimeout(function() {
location.reload();
}, 30000);
Example 2: how to refresh a web page automatically in javascript
<html>
<head>
<script type = "text/JavaScript">
<!--
function AutoRefresh( t ) {
setTimeout("location.reload(true);", t);
}
//-->
</script>
</head>
<body onload = "JavaScript:AutoRefresh(5000);">
<p>This page will refresh every 5 seconds.</p>
</body>
</html>