Skip to main content

GTM Glossary


2. Account
Google account lets you access all Google products: Gmail, Drive, Adwords, GTM, etc.
GA4 accounts contain Properties.
Google Tag Manager accounts containContainers.


3. Advanced tag settings

- Tag Firing Priority
- Tag Firing Schedule
- Tag Firing Options
- Tag Sequencing
- Ability to fire a tag only in published containers


4. Advertiser Tracking Enabled

A built-in variable in GTM containers for Mobile Apps.

For Android, the variable returns true if ad tracking is enabled, or false if the user has opted out of interest-based ads. Learn more in the Android Developer Center. SDK versions prior to v4 will always return false.
For iOS versions 6 and greater, the value is set to the advertisingTrackingEnabled property. Otherwise, the value is set to true.


5. Google Ads Conversion Tracking

A tag type which lets you track Google Ads conversions. Usually, this tag fires when a visitor/user completes registration, purchase or any other important action.

To start a new Google Ads tag, from the home screen select New Tag → Tag Configuration → Google Ads Conversion Tracking.


6. Google Ads Remarketing Tag
A tag type which lets you install Google Ads remarketing code.
This enables you to show ads to people who have visited your desktop or mobile website, or (did not) complete a particular action.
To create a new Google Ads tag, from the home screen select New Tag → Tag Configuration → Google Ads Remarketing.


7. AJAX
It stands for Asynchronous Javascript and XML.
AJAX is a set of techniques for creating highly interactive websites and web applications.
It enables your browser to send and receive data without refreshing the window.

A lot of web forms are created using AJAX and standard GTM Form submission trigger cannot track it.

That’s where AJAX listener (created by Lunametrics) comes in handy.


8. AMP
It’s an abbreviation of Accelerated Mobile Page.
Simply put, Accelerated Mobile Pages is a stripped-down version of the mobile web which runs on a reinvented version of the language used to create web pages: HTML.

This reimagined version of HTML, known as AMP HTML, removes most of the elements which cause web pages to load slower on mobile, like JavaScript and third-party scripts.
When it comes to AMP and Google Tag Manager, you need to choose a different container type – AMP.


9. API
API stands for Application Programming Interface, but basically, describes one way to plug your website/web application into another.
GTM API enables developers to control accounts, containers, folders, tags, triggers, etc. via other interfaces.

10. Approval queue
Approval queue is a feature reserved for the DoubleClick Floodlight setup only and is used exclusively as part of the DCF implementation process.


11. Asynchronous loading
Unlike synchronous, asynchronous scripts can load simultaneously.
They do not block page render and allows the browser to continue load elements while the Javascript is being downloaded in the background.
This significantly speeds things up, especially when the JS file is loaded from a remote server.


12. Auto-event listener
A listener is a function which operates in the background.
When creating the listener, you tell what operations it should wait for, and once these operations take place, the listener activates and fires any code within.

In Google Tag Manager Web containers, default auto-event listeners listen to the following interactions:
- Clicks.
- Link clicks.
- Form submissions.
- Javascript errors.
- Timer.
- History changes.
In order to enable these auto-event listeners in Google Tag Manager, you need to toggle the corresponding triggers (e.g. All Clicks trigger, etc.).


13. Auto-event variable
Auto-Event Variables are used to access the target element of an auto-event action (e.g. Click, Error, Form Submission).


14. Browser limits
For web containers, Tag Manager can only fire tags within the capabilities of the browser.
Most browsers handle a maximum of 6 to 8 simultaneous HTTP requests for a single domain.
If you have a high number of tags on the same domain firing under the same conditions, tags will only fire within this browser limitation.


15. Cleanup Tag
In a tag, under Advanced Settings, you’ll find a tag sequencing section which contains two options:

Fire a tag before XXXX fires option, which is called a setup tag.
Fire a tag after XXXX fires option, which is called a cleanup tag.

A cleanup tag fires immediately after the primary tag has fired.
To specify a cleanup tag, check the “Fire a cleanup tag when tag XXXXX is finished” checkbox and select the tag you wish to use from the menu.
Check the “Don’t fire Tag YYYYYY if Tag XXXXXX fails” checkbox if you wish to have the cleanup tag only fire when the main payload tag fires successfully.


16. Click classes
A built-in variable that fetches element’s CSS classes upon click. The same result can be achieved by using a user-defined variable with the following settings:

Type – Auto-event variable.
Variable type – Element classes.


17. Click Element
A built-in variable that returns an HTML element that was the target of a click. You can achieve the same result by using a user-defined variable with the following settings:

Type – Auto-event variable.
Variable type – Element.
Learn more about it here.


18. Click ID
A built-in variable that returns id value of the clicked element. You can achieve the same result by using a user-defined variable with the following settings:

Type – Auto-event variable.
Variable type – Element ID.


19. Click Target
A built-in variable which returns a string contained in the target attribute value of the clicked element. The same result can be achieved by using a user-defined variable with the following settings:

Type – Auto-event variable.
Variable type – Element Target.


20. Click Text
A built-in variable which returns the visible text inside the clicked element. You can achieve the same result by using a user-defined variable with the following settings:

Type – Auto-event variable.
Variable type – Element Text.


21. Click – All clicks
A trigger which fires when a visitor clicks anything on the page (image, link, etc.). In Preview and Debug console, this event is displayed as gtm.click.


22. Click – Just clicks
A trigger which fires when a visitor clicks any link on the page. It listens only for clicks which propagate up to a link (<a/>) node. This means that you can click on a SPAN in a BUTTON in a DIV, but as long as there’s a link somewhere up there, GTM will register the event as a link click.

In Preview and Debug console, this event is displayed as gtm.linkClick.


23. Click URL
A built-in variable which returns the value of href (or action) attribute of the clicked element. You can achieve the same result by using a user-defined variable with the following settings:

Type – Auto-event variable
Variable type – Element URL


24. Constant
A user-defined variable which returns the string you choose to type in the Value field. Its value never changes. Learn more about its use cases.


25. Container
Every Google Tag Manager account contains one or more containers. Currently, there are 4 types available: Web, iOS app, Android app, or AMP. Each container has one container snippet.


26. Container Activity
Container activity displays information about the actions that have been done in the container. It is useful to determine which user has performed a certain action and when it was done.

You can find container activity by opening any container of the account you’re interested in > Admin > Container Activity.