If you love getScript as a shortcut method in jQuery but you hate not being able to control whether the script calls from the browsers cache or not then you can override the build in function with a new one which is backwards compatable, so it won’t break any of your old code, and allows you to choose true or false to caching.
Read the original post by Jamie Thompson
(function($){ $.getScript = function(url, callback, cache){ $.ajax({ type: "GET", url: url, success: callback, dataType: "script", cache: cache }); }; })(jQuery)
I think you may want to consider using a default for ‘cache’ as ‘cache =undefined’ might cause some inconsistencies (but I don’t have a proof of that).
[code]
$.ajax({
type: "GET",
url: url,
success: callback,
dataType: "script",
cache: cache || true
});
[/code]
Posted by Drew on June 3rd, 2010.
From the original post and my use of this, I’m pretty confident it’s fine to use undefined and jQuery treats it as no.
Posted by Harry on July 21st, 2010.