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; }); });