I am using a table navigation menu in my website in that i have used JQuery fadeTo() for when I mouse over the menu items (<td>) it working only once. After same menuitem mouseover is not working. Please tell me whats wrong in my code?
$(document).ready(function() {
$("table.nav td").mouseover(function() {
$("table.nav td:hover").fadeTo("slow", 1.0);
});
});