How can i make equal height rows with one DIV-Class without adress all Column-Classes but rather the row with the 4-Line-Text in the first row ?
Here is my example and the problem http://jsfiddle.net/8mh4s/1/
$('.container').each(function() {
var highestBox1 = 0;
$('.column').each(function(){
if($(this).height() > highestBox1)
highestBox1 = $(this).height();
}).height(highestBox1);
});
my base was this Question - but this HTML based on row not colums: Setting equal heights for div's with jQuery
thanks to all !