X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;ds=sidebyside;f=src%2Fajax.js;h=d6c35d42364de03a3493d08961805db6a793c9fc;hb=a58f8f22d19ff88fedb324bdf97d22dd7c16131f;hp=5c8ec62aba081695936fbf9eef56fe3031f06fc8;hpb=d490bcfa7ca78a330e55b9267cc492a49c0f70bb;p=jquery.git diff --git a/src/ajax.js b/src/ajax.js index 5c8ec62..d6c35d4 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -250,14 +250,14 @@ jQuery.extend({ delete window[ jsonp ]; } catch( jsonpError ) {} } + + data = tmp; + jQuery.handleSuccess( s, xhr, status, data ); + jQuery.handleComplete( s, xhr, status, data ); if ( head ) { head.removeChild( script ); } - - data = tmp; - jQuery.handleSuccess( s, xhr, status, data ); - jQuery.handleComplete( s, xhr, status, data ); }; } @@ -287,7 +287,7 @@ jQuery.extend({ // Matches an absolute URL, and saves the domain var parts = rurl.exec( s.url ), - remote = parts && (parts[1] && parts[1] !== location.protocol || parts[2] !== location.host); + remote = parts && (parts[1] && parts[1].toLowerCase() !== location.protocol || parts[2].toLowerCase() !== location.host); // If we're requesting a remote document // and trying to load JSON or Script with a GET