exhtml
10/16/2016 - 5:44 AM

Bootstrap hover dropdown

Bootstrap hover dropdown


@media only screen and (min-width : 768px) {
  .dropdown:hover .dropdown-menu {
      display: block;
  }
}


// To enable parent link to work, put this in JS

$('.dropdown-toggle').click(function() {
    var location = $(this).attr('href');
    window.location.href = location;
    return false;
});