-3

I am using both of the bootstrap drop downs and tabs. Everything works fine and drop down gets close when I click anywhere on the page except bootstrap tabs. Dropdowns does not close when I click on bootstrap tabs(its name or tab contents). This is probably due to z-index. I could not find its solution and I will appreciate any help. Thanks in advance.

Aisha

aishazafar
  • 1,024
  • 3
  • 15
  • 35

1 Answers1

0

Without your code it's hard to tell what's happening, but you could try to hack it with jquery:

$('.your_tab_class').on('click', function(){
          $("body").click();
});

With this code, when you click in content with the class .your_tab_class the jquery clicks on body, so If you say that if you click on body it closes the dropdown, it should close this way. Hope this helps

luidgi27
  • 324
  • 2
  • 15