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ą