There is a template with 4 columns that should be the same height. To solve this problem, I use the function:
$(document).ready(function() { function setEqualHeight(columns) { var tallestcolumn = 0; columns.each( function() { currentHeight = $(this).height(); if (currentHeight > tallestcolumn) { tallestcolumn = currentHeight; } } ); columns.height(tallestcolumn); } setEqualHeight($(".EqualHeights")); }); When you load the page, everything is fine, but when you change the width of the browser window, the text starts falling out of the columns, as if this function does not exist. When reloading the page, everything works fine again. Tell me how to prevent text from falling out of columns when changing the width of the browser window.
$(window).resize- lexxl