The below code is not changing the javascript source:
if($.browser.msie){
var new_scr=document.createElement('script');
new_scr.src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(new_scr);
}
I have a feeling it might be because it is missing the type="text/javascript">
I know it is not working because I have a function that works only with jquery 1.3 and the function is not working.
You can find the full code here: cloudintegrationservice.com
You can use
$.getScript()to load the script file instead: http://api.jquery.com/jQuery.getScript/