Skip to content

Instantly share code, notes, and snippets.

View camipaixao's full-sized avatar
🏡
working from home

Camila Paixão camipaixao

🏡
working from home
  • Ímpar
  • Rio de Janeiro, RJ
View GitHub Profile
@camipaixao
camipaixao / formSubmit.js
Created April 15, 2020 18:17 — forked from klhall1987/formSubmit.js
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>