Display dropdown navigation on hover instead of having to click on the parent item https://codepen.io/bsngr/pen/frDqh
// display dropdown nav on hover instead of click
$('ul.nav li.dropdown').hover(function() {
$(this).find('.dropdown-menu').stop(true, true).delay(100).fadeIn(50);
}, function() {
$(this).find('.dropdown-menu').stop(true, true).delay(100).fadeOut(50);
});