Form submit tracking
Form submit tracking
I have this for link click tracking...
$(document).ready(function() {
$('a').click(function (event) {
var id = $(this).attr("id");
What would be the equivalent for track form submissions? We use jQuery Validate and would trigger the form click tracking function with the submitHandler.
submitHandler: function(form) {
formClickTracking();
}
;
Topic Participants
bgowder
jtara-jquery