Equalizes height for a group of selected elements
npm install equal-height

Equal Height is a jQuery plugin used to set and maintain a maximum height for a set of DOM elements.
Include the dependencies before you get started.
``html`
Each option is listed below, with its default value.
`js`
$('.selector').equalHeight({
// groupByTop: false,
// resizeTimeout: 20,
// updateOnDOMReady: true,
// updateOnDOMLoad: false
})
Group and set a maximum height based on all of the elements top position.
`js`
$('.selector').equalHeight({
groupByTop: true
})
Group and set a maximum height onDOMReady.
`js`
$('.selector').equalHeight({
updateOnDOMReady: true
})
Group and set a maximum height onDOMLoad.
`js`
$('.selector').equalHeight({
updateOnDOMLoad: true
})
Set the duration in milliseconds for debouncing the window resize event.
`js`
$('.selector').equalHeight({
resizeTimeout: 100
})
``
npm install
```
npm run watch-js