Mobile app version of vmapp.org
Login or Join
Lee4591628

: It's not available out of the box, but you could pass the minute level data as a custom variable with a single line of custom JavaScript You'd pass it as a page-level custom variable (you'd

@Lee4591628

It's not available out of the box, but you could pass the minute level data as a custom variable with a single line of custom JavaScript

You'd pass it as a page-level custom variable (you'd put this before your _trackPageview call).

Assuming you're using the async syntax.

_gaq.push(["_setCustomVar", 1, "Minute", ""+new Date().getMinutes(), 3]);


That would set a custom variable, with the key of Minute, and a value corresponding to the minute number (ie, 31).

However, I'd caution against spending time on this; it seems unlikely to yield actionable results.

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Lee4591628

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme