I have a navigation bar used to filter the results of a search. I am trying to keep things clean and reasonable sized, so I have a JQuery .hover function that basically hides the label of the filter option on hover, and replaces it with the drop down menu to select from.
My only problem is, once you hover on the label, and drop the menu down, if you move the mouse to select an option that is not displayed within the boundaries of the li, it thinks you are hovering off and then hides the select and shows the label.
Any ideas to have the hover function not think you are off while the select menu is dropped and you are trying to select an option?
$('li').hover(
function(){
$(this).children('.nav_label').hide();
$(this).children('.nav_select').show();
},
function(){
$(this).children('.nav_label').show();
$(this).children('.nav_select').hide();
}
);
<li><p>
<div class="nav_label">Menu Options</div>
<div class="nav_select" style="display:none;">
<select >
<option value="" selected="selected">Choose an Option</option>
<option value="option1">option1</option>
<option value="option2">option2</option>
<option value="option3">option3</option>
</select>
</div>
</p></li>