24Jan/10Off
jQuery .load problem in IE6 and IE7
Recently I have facet a problem with jTip jQuery plugin. The problem caused IE caching system by blocking .load function. It blocks AJAX requests. So to fix this problem, you need to call different URL's every time. The solution for jTip plugin is below.
find this line in jTip.js
$('#JT_copy').load(url);
and replace by this
$('#JT_copy').load(url+'&random=' + Math.random()*99999);
This snippet, add's random number after URL. So URL every time is different