Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- ( function( $ ) {
- $( document ).ready( function() {
- function equalHeight( el ) {
- var maxHeight = 0;
- el.each( function() {
- if ( $( this ).height() > maxHeight ) {
- maxHeight = $( this ).height();
- }
- } );
- el.css( 'min-height', maxHeight );
- }
- equalHeight( $( '.products .product .et_shop_image' ) );
- } );
- } )( jQuery );
- </script>
Advertisement
Add Comment
Please, Sign In to add comment