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()
I think you have to use the AJAX method instead which allows you to turn caching off:
$.ajax({ url: "test.html", data: 'foo', success: function(){ alert('bar'); }, cache: false });