Xilantra / jquery-match-height

a more robust, responsive equal heights plugin for jQuery

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jquery.matchHeight.js

matchHeight makes the height of all selected elements exactly equal.

brm.io/jquery-match-height

I needed a more robust version of the common equal heights plugin (that everyone and their grandma has made before).

So matchHeight improves on these by adding features and handling the edge cases where the others tend to fail in practice.

Demo

See the jquery.matchHeight.js demo.

jquery.matchHeight.js screenshot

Features

  • row aware, handles floating elements
  • responsive, automatically updates on window resize
  • handles mixed padding, margin, border values (even if every element has them different)
  • accounts for box-sizing
  • handles images and other media (updates automatically after loading)
  • data attributes API
  • tested in IE8+, Chrome, Firefox, Chrome Android

Status

Current version is v0.5.0. I've fully tested it and it works well, but if you use it make sure you test fully too. Please report any issues you find.

Install

jQuery is required, so include it first.
Download jquery.matchHeight.js and include the script in your HTML file:

<script src="jquery.matchHeight.js" type="text/javascript"></script>

Usage

$(elements).matchHeight(byRow);

Where byRow is a boolean that enables or disables row detection, default is true.
You should apply this on the DOM ready event.

See the included test.html for a working example.

Data API

Use the data attribute data-match-height="group-name" (or data-mh shorthand) where group-name is an arbitrary string to denote which elements should be considered as a group.

All elements with the same group name will be set to the same height when the page is loaded, regardless of their position in the DOM, without any extra code required.

Note that byRow will be enabled when using the data API, if you don't want this then use the above method.

Examples

$(function() {
	$('.item').matchHeight();
});

Will set all elements with the class item to the height of the tallest.
If the items are on multiple rows, the items of each row will be set to the tallest of that row.

<div data-mh="my-group">My text</div>
<div data-mh="my-group">Some other text</div>
<div data-mh="my-other-group">Even more text</div>
<div data-mh="my-other-group">The last bit of text</div>

Will set both elements in my-group to the same height, then both elements in my-other-group to be the same height respectively.

See the included test.html for a working example.

Advanced Usage

There are a few internal properties and functions you should know about:

$.fn.matchHeight._groups

The array that contains all element groups that have had matchHeight applied. Used for automatically updating on resize events.
Search and modify this array if you need to remove any groups or elements, for example if you're deleting elements.

$.fn.matchHeight._update()

If you need to manually trigger an update of all currently set equal heights groups, for example if you've modified some content.

$.fn.matchHeight._apply(elements, byRow)

Use the apply function directly if you wish to avoid the automatic update functionality.

Why not use CSS?

Making robust, responsive equal height columns for arbitrary content is difficult or impossible to do with CSS alone (at least without hacks or trickery, in a backwards compatible way).

Note you should probably ensure your layout is still usable if JavaScript is disabled.

License

jquery.matchHeight.js is licensed under The MIT License (MIT)
Copyright (c) 2014 Liam Brummitt

This license is also supplied with the release and source code.
As stated in the license, absolutely no warranty is provided.

About

a more robust, responsive equal heights plugin for jQuery

License:MIT License