Altos iguales entre DIVs con jQuery
Visto en la documentación oficial:
Creamos el metodo:
1 2 3 4 5 |
$.fn.equalizeHeights = function() { return this.height(Math.max.apply(this, $(this).map(function(i, e) { return $(e).height() }).get())) } |
Para hacer uso de el sobre las columnas que deseamos equiparar:
1 |
$('.columnas').equalizeHeights(); |