after page refresh js code example
Example 1: refresh page js
document.location.reload(true);
document.location.reload();
Example 2: refresh page js
window.location.reload(true);
Example 3: 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");
}