ドロップダウンメニューで選択したボタン(色)を、クリックすると固執するようにしています。現在、メニューで選択した色が何であれ、スライドして元に戻り、デフォルトで青になります。ご協力ありがとうございました!
ここに私のクエリがあり、フィドルは以下のとおりです。
var nav = $("#catpicker");
//add indicators and hovers to submenu parents
nav.find("li").each(function() {
if ($(this).find("ul").length > 0) {
//show subnav on hover
$(this).mouseenter(function() {
$(this).find("ul").stop(true, true).slideDown();
});
//hide submenus on exit
$(this).mouseleave(function() {
$(this).find("ul").stop(true, true).slideUp();
});
}
});
})(jQuery);