jQuery plugin to automatically collapse menus.
Auto Collapse depends on jQuery. To use it, include this in your page :
<script src="jquery.js" type="text/javascript"></script>
<script src="auto-collapse.js" type="text/javascript"></script>
When you call the plugin for the first time, it will check if the class normalClass
, which is by default 'navbar-normal', is present on the element to determine if the menu is collapsed or not.
Each time the window is resized, the plugin will check if the menu can fit on one line. If not it will apply the responsiveClass
, which is by default 'navbar-responsive'. It will also search for links matching the dropdownLinkSelector
, which is by default '.dropdown > a', and make them dropdown menus.
Here is how you can call the plugin:
$(function() {
$('.navbar').autoCollapse();
});
Class to apply when the menu is not collapsed.
Class to apply when the menu is collapsed.
Selector to use to find dropdown links in the menu.
Delegate to determine if the menu should be collapsed.
Set to false if you want to handle yourself when to check if the menu should be collapsed.
Nicolas Badia
Copyright 2012-2018 GestiXi under The MIT License (MIT).