Skip to content

Instantly share code, notes, and snippets.

@allentong
Last active July 8, 2016 18:37
Show Gist options
  • Save allentong/caa60a9fcee45683cc61eb9af8c91bdc to your computer and use it in GitHub Desktop.
Save allentong/caa60a9fcee45683cc61eb9af8c91bdc to your computer and use it in GitHub Desktop.
Firefox Back Button Reload Fix
$(window).bind("pageshow", function(event) {
if (event.originalEvent.persisted) {
location.reload();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment