2010 m. spalio 13 d., trečiadienis

IE6 hover problem

IE6 don't shows hover. This problem I solved with this code:

$(document).ready(function() {
$('#mainMenu > li').hover(
function() {
$(this).addClass('hovered');
}, function() {
$(this).removeClass('hovered');
}
);
});

Komentarų nėra:

Rašyti komentarą