Maximilianos / jquery.equalizeheights

A jQuery plugin to equalize the heights of a group of elements. Allows for and correctly handles box-sizing: border-box being set on the elements it handles

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jquery.equalizeheights

NOTICE:

This script is just a jQuery wrapper for eqheights. You probably want to be using that directly.


A jQuery plugin to equalize the heights of a group of elements. Allows for and correctly handles box-sizing: border-box being set on the elements it handles

##Usage

Simple

$('.equal').equalizeHeights();

Resize for RWD (Responsive Web Design):

var el = $('.equal');
$(window).resize(function () {
  el.equalizeHeights();
}).resize();

About

A jQuery plugin to equalize the heights of a group of elements. Allows for and correctly handles box-sizing: border-box being set on the elements it handles


Languages

Language:JavaScript 100.0%