javascript refresh page code example
Example 1: refresh window js
window.location.reload();
Example 2: how to reload the same page using javascript
BY LOVE
window.location.reload();
Example 3: javascript reload page
location.reload();
Example 4: refresh page js
//with no cache
document.location.reload(true);
//else
document.location.reload();
Example 5: 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>
Example 6: javascript refresh page
<script type="text/javascript">
function autoRefreshPage()
{
window.location = window.location.href;
}
setInterval('autoRefreshPage()', 10000);
</script>