I have this code:
<ul id='menu'>
<li class="no1"> </li>
<li class="no2"> </li>
<li class="no3"> </li>
</ul>
Classes no1 - no3 just set background images for "li" tags. I use following code to set opacity of all li elements to 0.15 :
$('#menu > li').hover(function () {
$('#menu > li').stop().animate({'opacity':'0.15'},"slow");
}
Everything is OK in Opera,Chrome,Safari and Firefox, but it doesnt work in IE7 and IE8 (and even maybe IE9)
I discovered I have to use style.filter property in IE but don't know how to exactly implement it in the code above. Any idea ?