Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function ($) {
- /* Equal height */
- function equalHeight(group) {
- var tallest = 0;
- group.each(function() {
- var thisHeight = $(this).height();
- if(thisHeight > tallest) {
- tallest = thisHeight;
- }
- });
- group.height(tallest);
- }
- /*USE*/
- equalHeight($('.class'));
- ......
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement