SBX-KITES

Click around to generate pixel events

Query Params

Eventspage_view (every link below is a navigation); its query_params reflects the URL.
HowClick a link and read query_params on the resulting page_view (debug console / network tab).
NotesThe pixel merges the real query string (before the #) with the query string inside an SPA hash route (#/route?…). On a key collision the hash-route value wins. Anchor hashes (#section) contribute nothing. Traditional and SPA /{path} links carry params in the real query string; #/ and #!/ links carry them inside the hash; merge links carry them in both.
Traditional — real query string
SPA /{path} — real query string; no reload when clicked from inside the SPA
SPA /#/{path} — params inside the hash route
SPA /#!/{path} — hashbang
Merge — params both before and after the hash (hash wins collisions)
Edge cases