We have setup the twitter bootstrap dropdown to work on hover (as opposed to click [yes we are aware of the no hover on touch devices]). But we want to be able to have the m
You could use a javascript snippit
$(function() { // Enable drop menu clicks $(".nav li > a").off(); });
That will unbind the click event preventing url changing.