Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- var currentPage = window.location.href;
- var pagePath = window.location.pathname;
- // listen for changes
- setInterval(function()
- {
- if (currentPage != window.location.href)
- {
- window.dataLayer = window.dataLayer || [];
- window.dataLayer.push({
- 'event': 'newPage'
- });
- currentPage = window.location.href;
- }
- }, 500);
- </script>
Advertisement
Add Comment
Please, Sign In to add comment