Skip to content

Instantly share code, notes, and snippets.

@Jalalhejazi
Forked from bradvin/jQuery.loadScript
Created September 15, 2013 20:10
Show Gist options
  • Save Jalalhejazi/6574002 to your computer and use it in GitHub Desktop.
Save Jalalhejazi/6574002 to your computer and use it in GitHub Desktop.
jQuery.loadScript
jQuery.loadScript = function (url, arg1, arg2) {
var cache = false, callback = null;
//arg1 and arg2 can be interchangable as either the callback function or the cache bool
if ($.isFunction(arg1)){
callback = arg1;
cache = arg2 || cache;
} else {
cache = arg1 || cache;
callback = arg2 || callback;
}
var load = true;
//check all existing script tags in the page for the url we are trying to load
jQuery('script[type="text/javascript"]').each(function () { return load = (url != $(this).attr('src')); });
if (load){
//didn't find it in the page, so load it
//equivalent to a jQuery.getScript but with control over cacheing
jQuery.ajax({
type: 'GET',
url: url,
success: callback,
dataType: 'script',
cache: cache
});
} else {
//already loaded so just call the callback
if (jQuery.isFunction(callback)) {
callback.call(this);
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment