
Quick Start Guide for Add Google Tag Manager
The Google Tag Manager container snippet is a small piece of JavaScript and non-JavaScript code that you paste into your pages. It enables the Tag Manager to fire tags by inserting gtm.js
into the page (or through the use of an iframe when JavaScript isn’t available).
To implement Google Tag Manager on your website:
- Copy the following JavaScript and paste it as close to the opening
<head>
tag as possible on every page of your website, replacing GTM-XXXX with your container ID:
<!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-XXXX');</script> <!-- End Google Tag Manager -->
2. Copy the following snippet and paste it immediately after the opening <body>
the tag on every page of your website, replacing GTM-XXXX with your container ID:
<!-- Google Tag Manager (noscript) --> <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-XXXX" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) -->