Created
January 11, 2023 11:59
-
-
Save koenbok/648cd847a9287c0e3910c09b538caf55 to your computer and use it in GitHub Desktop.
Track page views in Framer
This file contains 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
// https://stackoverflow.com/a/64927639 | |
function addPushStateListener(listener) { | |
if (!Proxy) return; | |
window.history.pushState = new Proxy(window.history.pushState, { | |
apply: (target, thisArg, argArray) => { | |
target.apply(thisArg, argArray); | |
listener(); | |
}, | |
}); | |
} | |
addPushStateListener(() => { | |
// Add your event recording here... | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Can you teach how to use this?