jQuery.get() is a shorthand for jQuery.ajax() with a get call. But when I set cache:false in the data of the .get() call
jQuery.get()
jQuery.ajax()
cache:false
.get()
Add the parameter yourself.
$.get(url,{ "_": $.now() }, function(rdata){ console.log(rdata); });
As of jQuery 3.0, you can now do this:
$.get({ url: url, cache: false }).then(function(rdata){ console.log(rdata); });