[jQuery] fadeOut, fadeIn and ClearType on IE browser
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
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; });