Skip to content

Instantly share code, notes, and snippets.

@MaySnow
Forked from bricker/event_tracking.coffee
Created September 24, 2012 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaySnow/3774985 to your computer and use it in GitHub Desktop.
Save MaySnow/3774985 to your computer and use it in GitHub Desktop.
Example of data attribute parsing
<a href="/news/" data-ga="MegaMenu,Clicked News,News">News</a>
@attributes = $(@el).attr("data-ga").split(",")
@category = @attributes[0]
@action = @attributes[1]
@label = @attributes[2]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment