Last active
February 6, 2024 14:47
-
-
Save peterjaffray/9b9697a3d4a3c6109cd6ef0880d92646 to your computer and use it in GitHub Desktop.
Here is the Elementor form tracker we used on this lead generating accountant website. Learn more about it here: https://www.choice.marketing/web-design/portfolio/blair-henderson-cpa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery( document ).ready(function( $ ){ | |
$( document ).on('submit_success', function(){ | |
gtag("event", "Successful Contact Form Submission", { | |
event_category: "Form", | |
event_label: "sendSuccess", | |
value: 20 | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment