You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A webPage context ID is generated with each page view. This is used in the data modeling step to identify what page view a subsequent on-page event occurred on. (Particularly useful if a user has multiple pages open in their browser simultaneously, and you want to know which tab a particular event happened in.) This is generated if the webpage context is set to true when initializing the JS tracker.
Currently, it appears that the ID is generated when the tracker is initialized. This is the incorrect behaviour: it should be generated when the trackPageView method is called. As a result, the context does not currently work with single page webapps, because it is not reset with each 'virtual' page view.
The text was updated successfully, but these errors were encountered:
A
webPage context ID
is generated with each page view. This is used in the data modeling step to identify what page view a subsequent on-page event occurred on. (Particularly useful if a user has multiple pages open in their browser simultaneously, and you want to know which tab a particular event happened in.) This is generated if thewebpage
context is set totrue
when initializing the JS tracker.Currently, it appears that the ID is generated when the tracker is initialized. This is the incorrect behaviour: it should be generated when the
trackPageView
method is called. As a result, the context does not currently work with single page webapps, because it is not reset with each 'virtual' page view.The text was updated successfully, but these errors were encountered: