My guess is that the src file needs to be XML-friendly, but of course none of the JS file is since it’s using all sorts of non-XML compliant entities.
getScript() may be expecting an XML file =/
Any thoughts?
if(is_def(pObj)){ $.getScript(pObj.src,function(){ pObj.stat = STATUS_OK; $a.dequeue(pObj); }); }
I’m also developing this on my desktop, not using any servers
jQuery’s official docs don’t say anything about expecting XML. It would seem that it simply expects a normal javascript file. I also tried some simple tests loading javascript files with comments in them and didn’t have any problems.
I have a feeling that you either have a syntax error in the javascript file or the ajax call is 404’ing.
Here are some suggestions.