Bootstrap – How to Make Dropdown on Hover

drop-down-menutwitter-bootstrap

How can I make twitter bootstrap's menu dropdown be on hover instead of a click?

Best Answer

1.Hide dropdown-menu on mouseover.

$(document).ready(function() {
    $('.nav li.dropdown').hover(function() {
        $(this).addClass('open');
    }, function() {
        $(this).removeClass('open');
    });
});

2.Hide dropdown-menu on click.

$(document).ready(function() {
    $('.nav li.dropdown').hover(function() {
        $(this).addClass('open');
    });
});

http://jsfiddle.net/7yMsQ/1/