Skip to content

Instantly share code, notes, and snippets.

View elliottmangham's full-sized avatar
🤓

Elliott Mangham elliottmangham

🤓
View GitHub Profile
@elliottmangham
elliottmangham / index.html
Created July 18, 2022 11:20
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>