Equal heights for elements on the same row jQuery plugin
npm install jquery-equalheightshtml
`
Bower
To install jquery-equalheights via Bower:
`
bower install jquery-equal-heights
`
Options
| Option | Possible values | Default |
| :------------ |:---------------:| -------:|
| onLoad | true / false | true |
| onResize | true / false | true |
Examples
`javascript
$( document ).ready(function() {
// make all list items with class category the same height
$('li.category').equalHeights();
// make different elements the same height
$('p.intro, img.thumbnail').equalHeights();
// only resize once now (not on window.resize and window.load)
$('.nav button').equalHeights({
onResize: false,
onLoad: false
});
});
``