Defer Code in Widgets – Page Speed
Your code shows an inline script, which adds a new script tag to the DOM, which probably slows down your website’s loading time. This is not an inline script tag then. Try adding this line s.defer = true; after s.async = true; to add the defer attribute to your script tag. It should then look … Read more