Created
July 18, 2022 11:20
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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