Skip to content

Instantly share code, notes, and snippets.

@ef2k
Created January 14, 2014 16:44
Show Gist options
  • Select an option

  • Save ef2k/8421412 to your computer and use it in GitHub Desktop.

Select an option

Save ef2k/8421412 to your computer and use it in GitHub Desktop.
Workaround for Safari back-forward cache
$(window).on('pageshow', function (evt) {
if (evt.originalEvent.persisted) {
window.location.reload();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment