#AskBootstrap: How to make twitter #bootstrap menu dropdown on hover instead on click?


Updated July 12, 2013 ● 775 views

2 Comments

2

On your javascript section, you can try putting the code below.

$('.nav-tabs > li > a').hover( function(){      $(this).tab('show');   });

The above code will show the dropdown items when mouse is hovered.

ram66 · 10 years ago
permalink · reply (1)
0

@ram66: Thank you! It works.

JasonIsBorn · 10 years ago
permalink · reply