hello TJ,
it´s a bit hard to understand whats going on there with just knowing one line of your code.
would it be possible for you to at least provide the relevant CSS/HTML for #I04 and #L04?
however, I got some idea you might wanna try:
since fadeIn is working with opacity, which is actually a filter in IE7 ( filter:alpha(opacity=1); ), I think this could be part of the issue.
My suggestion is to try the following:
$("#L04").click(function(e){
$("#I04").fadeIn(500).css('filter', 'none');
});
This removes any applied filter after the fadeIn, which is basically not a bad thing, since this property seems to break the antialiasing for Text in IE7 anyway.
It won´t affect other browsers, because they simply dont know the IE-own "filter" thingy.
I dont know if thats the solution to your problem - if not, please reply with some more CSS/HTML details of your code. Many things often go wrong in IE because of CSS rather than the script itself.
so long.