I am trying to load a .js
file into a div
which document.writes()
some HTML
elements into the div
Example :
<div style="overflow: hidden">
<script type="text/javascript" src="https://xyz/abc.js"></script>
</div>
Now this .js
file on AJAX
asynchronous postback does not executes.
How can I re-register the file into the div? Or how can I run this .js
file on asynchronous postBack
Thank You.