Make Parent Menu Items Clickable in Bootstrap 3 and 4
By default, Bootstrap parent menu is not clickable, its link only produces a dropdown menu where one can click sub menu’s link. But we can make it clickable using some lines of jQuery code , Adding a jQuery snippet give below will make your parent menu items clickable again! jQuery(‘.dropdown-toggle’).click(function() { if(jQuery(window).width < 960){ var […]