Equalize Heights

A simple jQuery plugin for equalizing the heights of elements in a row.
Alternatives To Equalize Heights
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Selectize.js12,980600111a month ago7July 12, 201860apache-2.0SCSS
Selectize is the hybrid of a textbox and <select> box. It's jQuery based, and it has autocomplete and native-feeling keyboard navigation; useful for tagging, contact lists, etc.
Bootstrap Fileinput5,3171,1823511 days ago89August 17, 202220otherJavaScript
An enhanced HTML 5 file input for Bootstrap 5.x/4.x./3.x with file preview, multiple selection, and more features.
Jstree5,09239813918 days ago32September 19, 20235mitJavaScript
jquery tree plugin
Jquery Mask Plugin4,65125066a year ago30July 31, 2019118otherJavaScript
A jQuery Plugin to make masks on form fields and HTML elements.
Unveil4,272
3 years ago1February 03, 2015106JavaScript
A very lightweight jQuery plugin to lazy load images
Malihu Custom Scrollbar Plugin4,110299582 years ago11July 10, 2016412otherJavaScript
Highly customizable custom scrollbar jQuery plugin, featuring vertical/horizontal scrollbars, scrolling momentum, mouse-wheel, keyboard and touch support etc.
Jquery Placeholder4,073120113 years ago4January 12, 201629mitJavaScript
A jQuery plugin that enables HTML5 placeholder behavior for browsers that aren’t trying hard enough yet
Animsition3,7492144 years ago8April 26, 201676mitCSS
A simple and easy jQuery plugin for CSS animated page transitions.
Bootstrap Multiselect3,62082258 months ago4August 01, 2021302otherHTML
JQuery multiselect plugin based on Twitter Bootstrap.
Overlayscrollbars3,1721001386 days ago58November 22, 20237mitTypeScript
A javascript scrollbar plugin that hides native scrollbars, provides custom styleable overlay scrollbars and keeps the native functionality and feeling.
Alternatives To Equalize Heights
Select To Compare


Alternative Project Comparisons
Readme

equalize-heights

A simple jQuery plugin for equalizing the heights of elements in a row.

When combined with Modernizr feature detection this plugin can be used as part of a fallback for browsers that do not support flexbox. The plugin includes a check for window resize events and adjusts the heights accordingly.

Note: I did not write this code - if you know the source let me know and I will attribute it.

Install

$ bower install --save equalize-heights

Usage Example

Target your grid wrappers and grid cells.

var gridWrapper = $('.grid-wrapper');

if (gridWrapper.length) {
    gridWrapper.each(function() {
        $(this).equalizeHeights({
            childElement: ".grid-cell"
        });
    });
}
Popular Plugin Projects
Popular Jquery Projects
Popular Libraries Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Plugin
Jquery
Grid
Resize Events