A lightweight and flexible jQuery plugin that allows you to collapse content. A feature also known as 'progressive disclosure'.
jQuery Collapse is tested against the latest version of jQuery but requires at least jQuery 1.7.0.
- WAI ARIA compliant
- Lightweight (~1.2kb minified and gzipped)
- Cross Browser compliant (Tested in >= IE6, Firefox, Safari, Chrome, Opera)
- Accordion behaviour can be enabled.
- Persistence to remember open sections on page reload!
A demo showcasing all the features of the plugin can be found at 'demo/demo.html' in this repository.
Load jQuery and the jQuery Collapse plugin into your document:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script src="jquery.collapse.js"></script>
Here's some sample HTML markup:
<div data-collapse>
<h2>Fruits</h2>
<ul>
<li>Apple</li>
<li>Pear</li>
<li>Orange</li>
</ul>
<h2>Info</h2>
<div>
<p>You can use any container you like (in this case a div element)</p>
</div>
</div>
That's it! The data-collapse attribute will automatically trigger the script.
The standard behaviour is to collapse all the sections on page load. If you want to show a section to the user on page load you can achieve this by adding an 'open' class to the section heading
<div data-collapse>
<h2 class="open">I'm open by default</h2>
<p>Yay</p>
</div>
You can open or close sections by utilizing events. Assume you have the following markup:
<div id="test" data-collapse>
<h2>Section 1</h2>
<p>I'm first</p>
<h2>Section 2</h2>
<p>I'm second/p>
</div>
You can now trigger events on the elements you want to affect. For instance:
$("#test").trigger("open") // Open all sections
$("#test").trigger("close") // Close all sections
$("#test h2 a").first().trigger("open") // Open first section
For further information, please refer to the events documentation.
If you'd rather omit the 'data-collapse' attribute in the HTML and load the plugin via jQuery, you can:
$("#demo").collapse({
// options...
});
If you don't want to use the jQuery ($) wrapper, you can also access the plugin with vanilla JavaScript:
new jQueryCollapse($("#demo"), {
// options...
});
By default the plugin will look for groups of two elements. In real life™ your markup may vary and you'll need to customize how the plugin interprets it. For example
<div id="demo">
<div>
<h2>Summary</h2>
<div>details...</div>
</div>
<div>
<h2>Summary</h2>
<div>details...</div>
</div>
</div>
In order for the plugin to understand the above markup, we can pass a 'query' option specifying where to find the header/summary element of a section:
new jQueryCollapse($("#demo"), {
query: 'div h2'
});
You can also just use an arbitrary link on a page to collapse\expand a section:
<a id="toggle" href="#demo">Toggle section</a>
<div id="demo" data-collapse>
<h2>Summary</h2>
<div>details...</div>
</div>
Then attach an event handler to your link and make use of jQuery Collapse events to toggle the section:
$("#toggle").click(function() {
$(this.hash).trigger("toggle");
});
Sometimes you want to customize what element inside the collapse summary that should trigger the open/close action. Consider the following markup:
<div id="custom-click-query">
<div class="test">
<a href="http://www.google.com">Google.com</a> <span class="toggle">info</span>
</div>
<div>
<p>Find stuff on google</p>
</div>
<div class="test">
<a href="http://www.twitter.com">Twitter.com</a> <span class="toggle">info</span>
</div>
<div>
<p>Tweet stuff on twitter</p>
</div>
</div>
Now use the clickQuery option to trigger the action only when the span is clicked
$("#custom-click-query").collapse({
clickQuery: "span.toggle"
});
To activate the accordion behaviour set 'accordion' as the value of the 'data-collapse' attribute:
<div data-collapse="accordion">
...
</div>
By default, if the user reloads the page all the sections will be closed. If you want previously collapsed sections to stay open you can add 'persist' to the data-collapse attribute:
<div id="demo" data-collapse="persist">
...
</div>
And include the storage module in your document after the other scripts.
<script src="jquery.collapse_storage.js"></script>
As in the example above, the target element (#demo) will require an ID in order for the persistence to work.
You can combine the accordion and persistence options by adding both values to the data-collapse attribute:
<div id="demo" data-collapse="accordion persist">
...
</div>
jQuery Collapse uses HTML5 localStorage if available, otherwise it will attempt to use cookies (read about IE support below). If that also fails, it will degrade to work but without any persistence.
For IE 6-7 you'll need to include the cookie storage and JSON2 libraries for the cookie storage support to work properly:
<!--[if lt IE 8]>
<script src="jquery.collapse_cookie_storage.js"></script>
<script src="json2.js"></script>
<![endif]-->
Here are the exposed options and events that you can play around with using JavaScript. Enjoy.
You can pass the following options when initializing the plugin with JavaScript.
- open (function) : Custom function for opening section (default: function(){ this.show() })
- close (function) : Custom function for collapsing section (default: function(){ this.hide() })
- accordion (bool) : Enable accordion behaviour by setting this option to 'true'
- persist (bool) : Enable persistence between page loads by setting this option to 'true'
- query (string) : Please refer to to using custom markup
- clickQuery (string): Please refer to custom click query
Example usage of options:
// Initializing collapse plugin
// with custom open/close methods,
// persistence plugin and accordion behaviour
$("#demo").collapse({
open: function() {
// The context of 'this' is applied to
// the collapsed details in a jQuery wrapper
this.slideDown(100);
},
close: function() {
this.slideUp(100);
},
accordion: true,
persist: true
});
You can listen for the opened and closed events on a collapsed collection.
$("#demo").bind("opened", function(e, section) {
console.log(section, " was opened");
});
$("#demo").bind("closed", function(e, section) {
console.log(section, " was closed");
});
You can manually trigger an open, close or toggle event to change the state of a section:
$("#demo").trigger("open") // open all sections
$("#demo").trigger("close") // close all sections
$("#demo h2 a").last().trigger("toggle") // toggle last section
When a section changes state, it will trigger either an "opened" or "closed" event in return, depending on it's new state.
If you're using vanilla JavaScript to instantiate the plugin, you'll get direct access to the open, close and toggle methods.
var demo = new jQueryCollapse($("#demo")); // Initializing plugin
demo.open(); // Open all sections
demo.close(); // Close all sections
demo.open(0); // Open first section
demo.open(1); // Open second section
demo.close(0); // Close first section
demo.toggle(1); // Toggle second section
Did you find a bug? Do you want to introduce a feature? Here's what to do (in the following order)
- Clone this repository, and run
npm install
- Write a test case
- Watch it fail (red light)
- Fix bug / introduce feature
- Watch it pass (green light)
- Refactor / Perfectionize!
- Submit a pull request on Github and wait patiently...
- Rejoice!
To run the tests simply type "npm test". The Karma test runner will open Chrome and Firefox and run the tests.
The tests are written in a BDD fashion using CoffeeScript and can be found in the test directory.
The test suite uses Mocha (test framework), Chai (exceptions) and Sinon (stubs and mocks).