Если необходимо подгружать скрипты, например после загрузки страницы - можно воспользоваться простой функцией:
function cachedScript (url, options)
{
// allow user to set any option except for dataType, cache, and url
options = $.extend(options || {}, {
dataType: "script",
cache: true,
url: url
});
// Use $.ajax() since it is more flexible than $.getScript
// Return the jqXHR object so we can chain callbacks
return jQuery.ajax(options);
}