Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active October 8, 2022 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vanaf1979/02014b43fa356f21e98314b31f527ea8 to your computer and use it in GitHub Desktop.
Save vanaf1979/02014b43fa356f21e98314b31f527ea8 to your computer and use it in GitHub Desktop.
const form = document.getElementById('my_form');
form.addEventListener('submit', function(event){
gtag('event', 'form_submit', {
event_category: 'Forms',
event_action: 'Submit',
event_label: 'Test form' // Name of your form.
});
return true;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment