jquery/src/ajax/script.js

85 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
}).ajaxTransport("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( _ , isAbort ) {
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
// Dereference the script
script = 0;
2011-01-05 22:41:23 +01:00
// Callback if not abort
if ( ! isAbort ) {
callback( 200, "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() {
if ( script ) {
script.onload(0,1);
}
}
};
}
});
})( jQuery );