0

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

code: http://jsfiddle.net/fT7D3/13/

fewllet
  • 25
  • 1
  • 5

2 Answers2

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();
    });
});

fiddle / paste

Community
  • 1
  • 1
Stano
  • 8,749
  • 6
  • 30
  • 44