on reload js code example

Example 1: how to reload the same page using javascript

BY LOVE
window.location.reload();

Example 2: javascript reload page

location.reload();

Example 3: refresh javascript

location.reload();
Works like refresh button.

Example 4: javascript onload

<body onload="myFunction()">

Example 5: on reload js

//check for Navigation Timing API support
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");
}

Example 6: script refresh js

window.location.href = window.location.pathname + window.location.search + window.location.hash;