Created
September 11, 2014 22:22
-
-
Save paulmkoch/2fbfd7086ab90f389a34 to your computer and use it in GitHub Desktop.
Event Category from Data Attribute
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This macro looks for data attributes whose values are separated by a pipe ('|'). Replace the pipe with the separator your data attribute uses, such as a comma. | |
function() { | |
tracking = {{Get Values from Data Attribute}}; | |
tracking = tracking.split('|'); | |
return tracking[0]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment