It's ideal if for the desktop the drop down menu is activated on hover. The problem with making it on hover is that the menu would be inaccessible to mobile devices which cannot hover. However, there may be a solution to this.
See the first response to http://stackoverflow.com/questions/24685000/bootstrap-3-dropdowns-on-hover-and-on-click
..since jQuery is a dependency for bootstrap.js, you might as well do it the jQuery way by just adding all of the events that you want to attach to in quotes space-separated:
$('.dropdown').on('mouseenter mouseleave click tap', function()
Unknown macro: {
$(this).toggleClass("open");
}
);
The selectors are based on the standard Bootstrap markup, taken directly from the docs
Here's a photoshop mockup of what the drop down menu should look like.