jQuery plugin, for responsive pages, to set tags to same height. Happens during/after browser resize. See our jQuery plugin page
- Selects set of all elements that match
selector
- Calculates max_height of all elements in set
- Sets height of all elements in set to max_height
- Refreshes based on
refresh
parameter.
$(selector).newHeights(refresh = 500)
selector = any jQuery selector or elements you want to be the same height
refresh = number (ms) for timer to continually resize - looks better
OR 'resize' only after browser resize
OR 'once' to resize only once
Coffeescript:
# Set all h3's in list to same height. Refresh every 500ms
$('#home .fancyBoxes .list .item h3').newHeights()
Javascript:
// Set all .preface tags in list to same height on browser resize
$('#home .fancyBoxes .list .item .preface').newHeights('resize')
See below or example.html for examples.