Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 729 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 729 Bytes

Equalizer

Equalizer is a MooTools plugin which analyzes a given set of elements and equalizers their height, taking into account the box model additions.

Screenshot

How to Use

Equalizer can be initialized at any time, but will most likely be initialized at DOMReady. There are no required arguments -- only options.

#JS
/* create instance */
var equalizer = new Equalizer('.column');

/* equalize heights */
equalizer.equalize('height');

/* equalize widths */
equalizer.equalize('width');

For specific usage and options, please read the documentation or visit http://davidwalsh.name/js/equalizer