By default we'll send the following page properties with events so you know what page a visitor was on when they performed an event action.
This is useful for segmenting events by UTM codes for customer acquisition, as well as sending emails to users with links back to the page they viewed.
Property | Description | Example | Maps to DOM Window Object | |
pm_url |
Full URL of page visited |
https://www.google.com/#q=window+location?utm=xyz | window.location.href | |
pm_site | Website visited | https://www.google.com | window.location.origin | |
pm_path | Path to page on website | / | window.location.pathname | |
pm_params | Query string of parameters, including UTM params | ?utm=xyz | window.location.search | |
pm_hash | Page # - this is often used with one page apps. | #q=window+location | window.location.hash | |
pm_title | The title of the page visited | This captures the page <title> HTML element, which is also the text displayed in the brower tab for a given page. | document.title |