Skip to content

Instantly share code, notes, and snippets.

@bricker
Created September 24, 2012 08:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bricker/3774917 to your computer and use it in GitHub Desktop.
Save bricker/3774917 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