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