reload page automatically javascript code example
Example 1: reload page javascript
window.location.reload();
Example 2: javascript refresh page
<script type="text/javascript">
function autoRefreshPage()
{
window.location = window.location.href;
}
setInterval('autoRefreshPage()', 10000);
</script>