IE and iOS <10 XHR transport does not succeed on data: URIs
Ref gh-4243
Ref gh-4126
Closes gh-4258
// Make this explicit, since user can override this through ajaxSetup (#11264)
type: "GET",
- dataType: "text",
+ dataType: "script",
cache: true,
async: false,
global: false,
- "throws": true,
// Only evaluate the response if it is successful (gh-4126)
- success: function( text ) {
- jQuery.globalEval( text );
+ // dataFilter is not invoked for failure responses, so using it instead
+ // of the default converter is kludgy but it works.
+ converters: {
+ "text script": function() {}
+ },
+ dataFilter: function( response ) {
+ jQuery.globalEval( response );
}
} );
};