Window.reload
window.location.reload();
Worried Wolf
window.location.reload();
BY LOVE
window.location.reload();
location.reload();
Works like refresh button.
//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");
}
window.location.href = window.location.pathname + window.location.search + window.location.hash;