Skip to content

Instantly share code, notes, and snippets.

@agarwa13
Created October 22, 2017 00:34
Show Gist options
  • Save agarwa13/85223072e02f2928ec6d8db2ba25063c to your computer and use it in GitHub Desktop.
Save agarwa13/85223072e02f2928ec6d8db2ba25063c to your computer and use it in GitHub Desktop.
Google Analytics Event on Form Submit
$('#replace-with-css-id-for-form').submit(function(e){
e.preventDefault();
_gaq.push(['_trackEvent', 'Forms', 'Submit', 'Home Contact']);
var form = this;
setTimeout(function(){ form.submit()}, 150);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment