Skip to content

artfinder/jquery-equal-height

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Equal Height Children

A jQuery plugin to make elements equal height. There are many plugins out there that do this, this one is ours.

Using the plugin

  1. Set the property data-equal-height on any element that is a parent of those you want to be equal, with a value that is the CSS selector of the elements that should be equal height

    <ul data-equal-height='li'>
      <li>Short<li>
      <li>Short<li>
      <li>Long, long, really long…<li>
    </ul>
    
  2. Include and invoke the plugin

    <script src='af.equal-height.js'></script>
    <script>
      $('[data-equal-height]').make_children_equal_height();
    </script>
    
  3. Revoke the plugin

    <script>
      $('[data-equal-height]').make_children_disequal_height();
    </script>
    
  4. Optionally call the function again if the heights are likely to have changed (eg. if the browser is resized, the font is resized, etc.)

    $('body').on(
        'resize',
        $('[data-equal-height]').make_children_equal_height()
    );
    

A live example is available.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published