John M Baptista
Composition | Performance | Instruction
jQuery(document).ready(function($) { function matchFancyHeights() { var maxHeight = 0; // Reset heights on resize $('.equal-height-fancy .nectar-fancy-box').css('min-height', '0px'); // Find tallest Fancy Box $('.equal-height-fancy .nectar-fancy-box').each(function() { var currentHeight = $(this).outerHeight(); if (currentHeight > maxHeight) { maxHeight = currentHeight; } }); // Apply tallest height to all if (maxHeight > 0) { $('.equal-height-fancy .nectar-fancy-box').css('min-height', maxHeight + 'px'); } } // Run on load and window resize matchFancyHeights(); $(window).on('resize', matchFancyHeights); setTimeout(matchFancyHeights, 500); // Catch late image loading });
Composition | Performance | Instruction