1.0.6 • Published 9 years ago

@mogusbi/jquery.equaliser v1.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

jQuery Equaliser Plugin

Make the heights of elements on the same row the same.

Getting started

NPM

Install package with NPM and add it to your dependencies:
npm install @mogusbi/jquery.equaliser --save

Introducing it to your page

Include jQuery and the plugin to your page and then select the elements you wish to set equal heights to and call the equaliser method.

<!doctype html>
<html>
  <head>
    ...
  </head>
  <body>
    <div class="row">
      <div class="col-xs-4" data-equalise>...</div>
      <div class="col-xs-4" data-equalise>...</div>
      <div class="col-xs-4" data-equalise>...</div>
    </div>

    <script src="jquery.js"></script>
    <script src="jquery.equaliser.js"></script>
    <script>
      $('[data-equalise]').equaliser();
    </script>
  </body>
</html>

License

Copyright © Mo Gusbi.
Licensed under the MIT license.

1.0.6

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago