I have this problem when using merely load() was sufficient, then of course I entered into caching related problems. So tried to fix it with ajaxSetup() but now I run into bigger problem which is Object not found error.
Here is the code:
$.ajaxSetup({
cache: false;
});
//podmeni definicija klik akcije
$("#podmeni a").click(function(){
var link=$(this).attr("href");
$("#tekst").load(link,function(){
//visina
$("#podmeni").height(($("#desno").height()-$("#logo").height()));
});
return false;
});
Thank you 😉
you have an error here
should be
Anyway, if you have cache problems in IE this won’t solve your issue i fear