Determining if prop values came from custom link or page view
If I'm populating the same variable (s.prop) with the same data from a custom link and a page view, is there a way to differentiate between the different sources (page vs. custom link) when I look at the values in that prop? If so how? Also what about when the variable is a list prop?
Example Page View:
s.pageName='Home";
s.prop1="1|2|3";
Example Custom Link:
s.linkTrackVars = "prop1";
s.linkTrackEvents = "None";
s.prop1="A|B|C";
s.tl(true,'o','Custom Link Call');