jquery/src/ajax/script.js

83 lines
1.7 KiB
JavaScript
Raw Normal View History

(function( jQuery ) {
// Install script dataType
jQuery.ajaxSetup({
accepts: {
script: "text/javascript, application/javascript"
},
2011-01-05 22:41:23 +01:00
contents: {
script: /javascript/
},
2011-01-05 22:41:23 +01:00
converters: {
2010-12-24 18:02:45 +01:00
"text script": jQuery.globalEval
}
});
// Bind script tag hack transport
jQuery.ajax.transport("script", function(s) {
2011-01-05 22:41:23 +01:00
// Handle cache special case
if ( s.cache === undefined ) {
s.cache = false;
}
2011-01-05 22:41:23 +01:00
// This transport only deals with cross domain get requests
if ( s.crossDomain && s.async && ( s.type === "GET" || ! s.data ) ) {
2011-01-05 22:41:23 +01:00
s.global = false;
2011-01-05 22:41:23 +01:00
var script,
head = document.getElementsByTagName("head")[0] || document.documentElement;
2011-01-05 22:41:23 +01:00
return {
2011-01-05 22:41:23 +01:00
send: function(_, callback) {
script = document.createElement("script");
script.async = "async";
if ( s.scriptCharset ) {
script.charset = s.scriptCharset;
}
2011-01-05 22:41:23 +01:00
script.src = s.url;
2011-01-05 22:41:23 +01:00
// Attach handlers for all browsers
script.onload = script.onreadystatechange = function( _ , statusText) {
2011-01-05 22:41:23 +01:00
if ( ! script.readyState || /loaded|complete/.test( script.readyState ) ) {
2011-01-05 22:41:23 +01:00
// Handle memory leak in IE
script.onload = script.onreadystatechange = null;
2011-01-05 22:41:23 +01:00
// Remove the script
if ( head && script.parentNode ) {
head.removeChild( script );
}
2011-01-05 22:41:23 +01:00
script = 0;
2011-01-05 22:41:23 +01:00
// Callback
callback( statusText ? 0 : 200, statusText || "success" );
}
};
// Use insertBefore instead of appendChild to circumvent an IE6 bug.
// This arises when a base node is used (#2709 and #4378).
head.insertBefore( script, head.firstChild );
},
2011-01-05 22:41:23 +01:00
abort: function(statusText) {
if ( script ) {
script.onload( 0 , statusText );
}
}
};
}
});
})( jQuery );