I am using jquery fadeTo() its working in chrome and firefox but not in IE 7. Below code is not working in IE 7..
I have fixed table.nav td:have{ opacity:0.2;}
Run time i use jquery to change opacity 0.2 to 1.0
$(document).ready(function() {
$("table.nav td").hover(function() {
$("table.nav td:hover").fadeTo("slow", 1.0);
});
});