Skip to content

Instantly share code, notes, and snippets.

@ortense
Last active October 18, 2018 05:19
Show Gist options
  • Save ortense/3fd99640b1ac918e75f1 to your computer and use it in GitHub Desktop.
Save ortense/3fd99640b1ac918e75f1 to your computer and use it in GitHub Desktop.
Google Analytics Track Form Interactions
(function($){
var forms = $("form");
forms.on("submit", function(){
var form = $(this);
ga("send", "event", "forms",
form.attr("name") || form.attr("id"),
"submit";
);
});
forms.find(":input").on("change", function(){
var form = $(this).closest("form");
ga("send", "event", "forms",
form.attr("name") || form.attr("id"),
(this.name || this.id) + "(change)";
);
});
forms.find(":button").on("mousedown", function(){
var form = $(this).closest("form");
ga("send", "event", "forms",
form.attr("name") || form.attr("id"),
(this.name || this.id) + "(click)";
);
});
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment