Home / Disable / Event Snippet (Schedule Fitting)
Duplicate Snippet

Embed Snippet on Your Site

Event Snippet (Schedule Fitting)

Event snipping is used to track Google ads booking conversions

JT Trisko PRO
<10
Code Preview
html
<!-- Event snippet for Schedule a Fitting conversion page
In your html page, add the snippet and call gtag_report_conversion when someone clicks on the chosen link or button. -->
<script>
function gtag_report_conversion(url) {
  var callback = function () {
    if (typeof(url) != 'undefined') {
      window.location = url;
    }
  };
  gtag('event', 'conversion', {
      'send_to': 'AW-878928306/xtlhCLKZkIYBELLDjaMD',
      'value': 0.0,
      'currency': 'USD',
      'event_callback': callback
  });
  return false;
}
</script>

Comments

Add a Comment