Hi I have problem with IE9. I have drop down menu with select boxes and if I try to select value hover div will disappeared. I tried to figure out by some codes but I'm stuck. Here is my code. So If some will have any idea how to fix that IE bud I'll be so glad. THX
Asked
Active
Viewed 386 times
2 Answers
1
Check out this fiddle
Try this code :
$('.left_content_tab_combobox').focus(function() {
$(this).parents('.dropdown').addClass('dropdown_hover'); }).blur(function() {
$(this).parents('.dropdown').removeClass('dropdown_hover');
});

Ahmad Alfy
- 13,107
- 6
- 65
- 99
0
Modified your html+css and used jQuery to hide&show the dropdown. This is probably not possible by using only the :hover
pseudoselector, you can have a look at this question.
$(document).ready(function(){
$('.drop').mouseenter(function(){
$('#menu .content').hide();
$(this).next('.content').show();
});
$('.closex').click(function(){
$(this.parentNode).hide();
});
});
-
THX for response but Ahmad Alfy figured out how to do that just only with hover..... – fewllet Aug 01 '12 at 12:07