Skip to content

Instantly share code, notes, and snippets.

@GaryUnbounce
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save GaryUnbounce/9081233 to your computer and use it in GitHub Desktop.

Select an option

Save GaryUnbounce/9081233 to your computer and use it in GitHub Desktop.
Tracking Form Submission Buttons Clicks with Universal Analytics
<script>
$( '.lp-pom-form .lp-pom-button' ).click(function() {
if (lp.jQuery('form').valid() == true) {
ga('send', 'event', 'form', 'button', 'submit');
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment