For the instructions in this article to work, you will have to create a tag in your GTM account that will contain the base tracking code that needs to load on your page.
1. Add your GTM container ID on your landing page as shown here: https://d.pr/jpJTLh
2. Paste the following code in Javascript - Footer section of your page.
With this code snippet on your page, you will be able to create custom events and triggers within Google Tag Manager that fire upon a form submission.
Variation Tracking
If you want to track the variation of the page, add 'variation': __variant at the bottom of the code snippet provided. The code will look like this:
<script type = "text/javascript" >
window.instapageFormSubmitSuccess = function(form) {
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
'event': 'formSubmissionSuccess',
'formId': 'contactForm',
'variation': __variant
});
};
</script>Important to note that __variant needs to be typed exactly as it is a global variable on the page.
You will need to edit the tag and trigger configuration in your GTM container.