LouisWhit of Captavi
1/30/2014 - 3:30 PM

Set columns to same height on one row. All columns will be height of tallest column.

Set columns to same height on one row. All columns will be height of tallest column.

$('.row .span4 .well').css({ // This gives all columns in a row the same height
  'height': $('.row .span4 .well').height()
});