https://github.com/iiibird/jquery.equalheights
jQuery Equal Heights per row
https://github.com/iiibird/jquery.equalheights
height-calculation
Last synced: 5 months ago
JSON representation
jQuery Equal Heights per row
- Host: GitHub
- URL: https://github.com/iiibird/jquery.equalheights
- Owner: iiiBird
- License: mit
- Created: 2016-12-21T08:22:39.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-04T11:30:54.000Z (over 9 years ago)
- Last Synced: 2025-05-20T06:06:44.794Z (about 1 year ago)
- Topics: height-calculation
- Language: HTML
- Size: 300 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jQuery Equal Heights by row
Version 1.0.0
This plugin makes the height of all selected elements exactly equal.
## Authors
iBird Rose ([vk.com](https://vk.com/iiibird)) & KFan ([vk.com](https://vk.com/gildarb))
## Manual Download - Stable Release
[Download](https://github.com/iiiBird/jQuery.equalHeights/releases)
## Install
Include jquery.equalheights.js after calling jQuery.
```
```
## Usage
```
$(function() {
$(".item").equalHeights(options);
});
```
## Options
The default options are:
```
{
innerItem: false,
parent: $(this).parent(),
byRow: true
}
```
Where:
* innerItem - Inner element that you want to set the height. type - string. (Example: innerItem: ".item_content",)
* parent - Parent element if a direct parent is not needed element. type - object (Example: parent: $(".parent"),)
* byRow - true or false to enable row detection.
more information and examples in [demo](https://iiibird.github.io/jQuery.equalHeights/demo/)
## Demo and Examples
[Examples](https://iiibird.github.io/jQuery.equalHeights/demo/)
## Changelog
__Version 1.0.0__
* First Release