It seems that they are not . The proposed workaround is to override the function:
$.getScript = function(url, callback, cache) {
$.ajax({
type: "GET",
url: url,
success: callback,
dataType: "script",
cache: cache
});
};
which can be used as follows:
$.getScript('/foo.js', function() { }, true);
source
share