Skip to content

Instantly share code, notes, and snippets.

@byteface
Created September 22, 2014 02:30
Show Gist options
  • Save byteface/8ee9cdc774d74d61a0d5 to your computer and use it in GitHub Desktop.
Save byteface/8ee9cdc774d74d61a0d5 to your computer and use it in GitHub Desktop.
reload page javascript
setTimeout( function(){ windowReload() }, 2000 );
function windowReload(){
if(!window.location.hash) {
window.location = window.location + '#loaded';
window.location.reload();
}else{
if (history && history.pushState){
history.pushState( null, null, window.location.href.split('#')[0] );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment