Hi! Im having a issue within a hover that is inside a .everytime(2000)...
j("#ifr").everyTime(2000,function(){...
j.ajax({
url: "script.php",
cache: true,
success: function(html){
j(".chatline").hover(function(){
var did = j(this).attr('rel');
j("#status-"+did+":hidden").fadeIn('fast');
...}
the problem is that when .everytime fires the .hover refires and then it blinks because its has hidden class. Tried unbind('mouseenter mouseleave').hover(function){... but no change.
Is there any way of solving this ?