Jump to content

geverwills

Approved members
  • Posts

    1
  • Joined

Everything posted by geverwills

  1. According to Google Developers article, you can: Use asynchronous script loading, using <script src="..." async> or element.appendChild(), It is better don't use document.write for CDN, here is workaround: var script = document.createElement('script'); script.src = "...."; document.head.appendChild(script);
×
×
  • Create New...