Reply to thread

You need to be aware of what <script> tags can do when inserted dynamically into the page after loading. If they make certain calls (document.write), this will causes issues like you see. This is really just how JavaScript (and document.write) work. (Alternative methods of inserting content in JS can be used, but it'd be down to the JS provider to write that.)


Back
Top Bottom