My requirement is, when i hover over the popup and select something on form, popup should keep visible.
If the popup lose the move hover, it should be hidden
Everything working well with the below code. But when i try to select the option in the select box (options dropping down out of popup), popup gets hidden.
Here is the JSFIDDLE link http://jsfiddle.net/LNGz6/5/ and this problem occurs only in Internet Explorer
Here is the code
<div id="popup">
<div class="label"> Search </div>
<div class="control">
<select name="searchval">
<option value="entries">Entries</option>
<option value="bookings1">bookings1</option>
<option value="bookings2">bookings2</option>
<option value="bookings3">bookings3</option>
<option value="bookings4">bookings4</option>
<option value="bookings5">bookings5</option>
<option value="bookings6">bookings6</option>
</select>
</div>
</div>
Jquery Function
$("#popup").hover(function(){
//do none
},function(){
$(this).hide();
});