I've experienced problem in IE6 when trying to refresh an image by changing the src attribute.
My code looked like this:

$('._valCode', divVote).src('../images/validationCode.php?w=50&h=17&t=' + new Date().getTime());

IE6 would not display the image until I clicked "Show Picture" in the right click menu.

My work around: setTimeout()
setTimeout(function(){
        $('._valCode', divVote).src('../images/validationCode.php?w=50&h=17&t=' + new Date().getTime());
    }, 500);

Firefox and IE7 don't have such problem.
Many IE6 issues can be solved by setTimeout().

--
Arrix
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to