[jQuery] script element added with XMLHTTPRequest
I added a script element with jQuery as
<code>
$j('<script type="text/javascript" src="http://domain.com/script.js"></
script>').appendTo("body");
</code>
It adds the file correctly, however it uses AJAX or XHR to get the
file and it adds _=1323131546 (some number, I guess to disable
caching) to query the script.
Is there anyway to disable this, ie call it normally as for other
elements eg link (for css). ?