Skip to content

Instantly share code, notes, and snippets.

@rjv
Last active December 12, 2015 08:08
Show Gist options
  • Save rjv/4741431 to your computer and use it in GitHub Desktop.
Save rjv/4741431 to your computer and use it in GitHub Desktop.
Simple Google Analytics event tracking wrapper
var track = function(category, action, label) {
if (window.ga) {
ga('send', 'event', category, action, label);
}
else if (window._gaq) {
window._gaq.push(["_trackEvent", category, action, label]);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment