jeremy-h of Web Development
10/30/2017 - 6:39 PM

Nav Dropdown NO Link

Prevents navigation menu items from loading a URL that have the .dropdown class added to them.

$(document).ready(function(){
    $('.nav>li.dropdown>a').click(function(){
        return false;
    });
});