Skip to content

Instantly share code, notes, and snippets.

@elliottmangham
Created July 18, 2022 11:20
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 elliottmangham/98e7d0b744e8128c6069a6c5a06485fc to your computer and use it in GitHub Desktop.
Save elliottmangham/98e7d0b744e8128c6069a6c5a06485fc to your computer and use it in GitHub Desktop.
Clear Safari in-built cache (solves previous/back button issues when using LocomotiveScroll)
<!-- Add the following before </head> -->
<script>
( function () {
window.onpageshow = function( event ) {
if ( event.persisted ) {
window.location.reload();
}
};
} )();
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment