window.location.reload();
window.onbeforeunload = function() {
return "Dude, are you sure you want to refresh? Think of the kittens!";
}
location.reload();
// OR
window.location.reload();
// Works on iOS Safari as well
location.reload()
window.location.reload()
location.reload():
<script type="text/javascript">
function autoRefreshPage()
{
window.location = window.location.href;
}
setInterval('autoRefreshPage()', 10000);
</script>
location.reload();
Works like refresh button.
function refresh(milliseconds) {
console.log("Refreshing");
setTimeout("location.reload(true);", milliseconds);
}
function your_code() {
//code stuff
refresh(1000); //refreshes after 1 second
}
//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");
}