Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid using document.write() #11

Open
Marcus-Rise opened this issue Aug 27, 2020 · 1 comment
Open

Avoid using document.write() #11

Marcus-Rise opened this issue Aug 27, 2020 · 1 comment

Comments

@Marcus-Rise
Copy link

Warning in console

index.js?c760:57 [Violation] Avoid using document.write(). https://developers.google.com/web/updates/2016/08/removing-document-write

@treeindev
Copy link

To add more on this, in Google's documentation there's a section on how to fix this issue:

If your provider gives you a snippet that includes the document.write(), it might be possible for you to add an async attribute to the script element, or for you to add the script elements with DOM API's like document.appendChild() or parentNode.insertBefore()

Here's an example of how Google Analytics does the injection of an external JS file:

(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
/* internal code for analytics */
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants