What is the simplest way to change the Bootstrap menu from dropping down on click, rather than on hovering?
sample url: http://riverc.mgns.se
Can this be achieved via bootstrap, purely by CSS or a bit of JavaScript?
What is the simplest way to change the Bootstrap menu from dropping down on click, rather than on hovering?
sample url: http://riverc.mgns.se
Can this be achieved via bootstrap, purely by CSS or a bit of JavaScript?
Add this line in your javascript code:
$('.dropdown-toggle').dropdownHover();
<script type="text/javasccript">
tag you will palce the above code :)
In twitter bootstrap dropdown, the dropdown is controlled by css so click like process cnt be done using css, so you have to use javascript or jquery for this...
Idea is that use two class for that toggle,
.off { display:none; }
.on { display:block; }
Develop your script with the help of this, http://api.jquery.com/toggleClass/