Спасибо! Но я все равно не могу разобраться((( Буквально пару дней имею дело с JS. Посмотрите, пожалуйста, код - что неправильно? Меню вообще перестали закрываться....
$(document).ready(function(){
$('.top_menu > ul li').hover(function() {
var linkChild=$(this).children('ul');
linkChild.css('display','block');
},
function() {
var linkChild=$(this).children('ul');
var timerId = setTimeout(function() {
linkChild.hide();
},800)
if(linkChild.mouseenter()){clearTimeout(timerId);}
});})
|