Hi,
i show ul,(it shows my submenu) like floowing code , i have problem with hiding ul, while i move mouse over ul(into menu) , it hides, and i cound not use of mouseout event correctly
how could i hide ul, just when mouseout of "ul li"
$("ul li").mouseover(function() {
$(this).find('ul').show();
}).mouseout(function(){
$(this).find('ul').hide();
});