Skip to content

Instantly share code, notes, and snippets.

@pulketo
Created February 19, 2019 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pulketo/2a31beaa43687612aa08eea66fc59524 to your computer and use it in GitHub Desktop.
Save pulketo/2a31beaa43687612aa08eea66fc59524 to your computer and use it in GitHub Desktop.
Javascript Html Reload if back button
window.addEventListener( "pageshow", function ( event ) {
var historyTraversal = event.persisted ||
( typeof window.performance != "undefined" &&
window.performance.navigation.type === 2 );
if ( historyTraversal ) {
// Handle page restore.
window.location.reload();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment