on refresh javascript 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: refresh page js
document.location.reload(true);
document.location.reload();
Example 4: javascrpt refresh page
location.reload();
Example 5: javascript refresh page
<script type="text/javascript">
function autoRefreshPage()
{
window.location = window.location.href;
}
setInterval('autoRefreshPage()', 10000);
</script>
Example 6: on reload js
if (window.performance) {
console.info("window.performance works fine on this browser");
}
console.info(performance.navigation.type);
if (performance.navigation.type == performance.navigation.TYPE_RELOAD) {
console.info( "This page is reloaded" );
} else {
console.info( "This page is not reloaded");
}