Choose between Synchronous and Asynchronous methods

The generic tag comes in two versions: synchronous and asynchronous.

The Synchronous mode

In synchronous mode, your website’s code scripts will load one after the other. A script can only be loaded if the previous one has finished loading. If a script is blocked, it will stop the script after it from loading.

All_About_Tags_03.png

Asynchronous mode

On the other hand, in asynchronous mode, the different calls to the scripts will be made at the same time. All the scripts will load at the same time. In this case, if a script hangs up, it will not stop the other scripts from loading.

All_About_Tags_04.png The disadvantage of an asynchronous tag is that the screen may seem to flicker if the modifications are applied after the website loads.

Last updated

Was this helpful?