When using jQuery's getScript() function I get a "not well-formed" error on a line with comments
- by codeninja
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);
});
}