HTML Forms Event Tracking
-
I’m using the HTML Forms plugin and want to track form submit events. They provide a javascript snippet to detect a successful submit and I want to know how to customize it to work with Monster Insights?
Their snippet looks like this:
<script> html_forms.on('success', function(formElement) { // your code goes here }); </script>Is this proper way to track the submit?
<script> html_forms.on('success', function(formElement) { __gaTracker.push(['_trackEvent', 'contact-form', 'submit', 'contact']); }); </script>The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘HTML Forms Event Tracking’ is closed to new replies.