I have this URL which needs to be loaded after the page has been loaded. I am trying to load the URL via Javascript like this:
<script type="text/javascript" src="//www.adtol.com/native/1/1/0/1"></script>
But, whenever I add async to this script doesn't load.
<script async type="text/javascript" src="//www.adtol.com/native/1/1/0/1"></script>
The src doesn't actually load the js file, it fetches data from server.
What can I do to load the URL asynchrounously via Javascript?
You can visit the src
URL for better idea.