Может кто-нибудь помочь мне с этим простым кодом ... Я все еще новичок на JS, и я не знаю, что я делаю неправильно. По сути, я пытаюсь сделать меню при наведении курсора.
function showQuickLinks() {
//show the menu
}
function hideQuickLinks() {
//hides the menu
}
//button mouseover
$("#quick-links-dd").mouseover(function() {
showQuickLinks();
});
var mnuTimeout;
//clears timeout when it rolls over the button
$("#quick-links-dd").mouseover(function () {
clearTimeout(mnuTimeout);
})
//$("#quick-links) - quick links container
//hides the menu when the mouse is not over the container
$("#quick-links").mouseout(function () {
mnuTimeout = setTimeout("hideQuickLinks()",1000);
});
Курсор работает, но он не выполняет код, когда мышь находится вне контейнера ссылок.