Created
September 18, 2023 18:34
-
-
Save luis-fonseca/2becc554a082abb9447d1c7c7bba42a1 to your computer and use it in GitHub Desktop.
Inclusão de plugin de acessibilidade no GTM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="https://cdn.assistive.com.br/plugin/AssistiveWebPlugin.js" charset="UTF-8" type="text/javascript" async="true"></script> | |
| <script> | |
| var waitFn = setInterval(function () { | |
| if (typeof assistive.init === 'function') { | |
| assistive.init({}); | |
| clearInterval(waitFn); | |
| console.log('Plugin Assistive carregou'); | |
| } | |
| }, 500); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment