When I load a script from an external server in the following manner
<div id="verisign-logo">
<script type="text/javascript" src=verisign-url>
</div>
The script gets executed and a flash file is displayed in the div with Id verisign-logo. Verisign-url is a predefined variable.
Now I am trying to load and execute the script asynchronously.I added async attribute to the script tag in the following manner
<div id="verisign-logo">
<script type="text/javascript" src=verisign-url async=true>
</div>
But the weird thing is script gets appened in the div however the flash file doesnot get displayed.What exactly is not right here?
asychis supposed to do.</script>. Is that a copying error or in your real code?