fadeIn() not working for click(), mousedown(), mouseup() events in IE7
I am trying to execute a piece of code that causes a div to fadeIn when the click() event is called for another object. I know the fadeIn function is working because if I attach this to a dblclick() or mouseover() event it works as it should, but when the exact same code is tied to click(), mousedown() or mouseup() it does not work. The div fades in completely and then disappears. This is in IE7 on Vista x64. What am I missing?
//does not work in IE7
$("#L04").click(function(e){$("#I04").fadeIn(500);});
//does work in IE7
$("#L04").dblclick(function(e){$("#I04").fadeIn(500);});
Thanks,
-TJ