Jquery .height() not updating on window resize
$(document).ready(function() { // Select and loop the containers element of the elements you want to equalise $(‘.achievements-block’).each(function() { // Cache the highest var min_highestBox = 0; // Select and loop the elements you want to equalise $(‘.grid-item.single’, this).each(function() { // If this box is higher than the cached highest then store it if ($(this).height() > … Read more