Is this considered a violation if I modify the code from this:
To this:
I just want to delay the execution of the javascript.
JavaScript:
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-123" crossorigin="anonymous"></script>
To this:
JavaScript:
<script>
setTimeout(function() {
var adsense_js = document.createElement('script');
adsense_js.async = true;
adsense_js.src = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-123";
adsense_js.crossOrigin = "anonymous";
document.body.appendChild(adsense_js);
}, 1000);
</script>
I just want to delay the execution of the javascript.