[jQuery] fadeOut, fadeIn and ClearType on IE browser

2009-03-27 Thread jgarcia
Hi, I using fadeOut and fadeIn to show/hide a selected from a . With this code: if ( toggleSrc == toggleMinus ) {$(this).attr('src', togglePlus).parents ('tr').siblings().fadeOut('slow'); } else {$(this).attr('src', toggleMinus).parents('tr').siblings ().fadeIn('

[jQuery] fadeOut / fadeIn

2009-03-15 Thread andreacfm
Hi, A fast question. This code run in 1.2.6 but fails in 1.3 ++. Why??? $('.showPasswordForm').click(function(event){ $('#signinPanel').fadeOut(function(){ $('#passwordPanel').fadeIn(); }); return false; });