Tuesday, 3 April 2012

JQuery expand collapse logic

In many places I started to face expand-collapse behavior these days.
So here is how I handle it;

$('.exp-col-trigger').bind('click', function (e, options) {
e.preventDefault();

var view = $(this).attr('data-selector');
$(view).toggle();

return false;
});

So since I use jQuery, why not use selectors here and make it really flexible to use. You could pass ids like '#crazy-monkeys' or classes like '.match' or even you could pass ".match[data-status='2']".

An example would be..


REGION 1

REGION 2

REGION 3


Also maybe it makes sense to make this a a plugin where could do.

$('#container').expandCollapse();

Where it only adds the functionality for the elements under a container, but any reason for it?