Skip to content

Instantly share code, notes, and snippets.

@camipaixao
Forked from klhall1987/formSubmit.js
Created April 15, 2020 18:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save camipaixao/38342288e195bc6f1a52b9f4bc8884d1 to your computer and use it in GitHub Desktop.
Save camipaixao/38342288e195bc6f1a52b9f4bc8884d1 to your computer and use it in GitHub Desktop.
Example of how to use the .on formSubmit listener.
<script>
jQuery( document ).ready( function() {
//Setup our on formSumbit Listener.
jQuery( document ).on( 'nfFormSubmitResponse', function() {
//Do Stuff
ga('send', 'event', 'Email List', 'Subscribed', 'New Subscriber');
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment