Setting equal heights for div’s with jQuery
Answer to your specific question Your code was checking all columns within any container, what you need to do is: Loop through each container Get the heights of each column within that container Find the highest one Apply that height to every column in that container before moving on to the next one. Note: Try … Read more