![javascript](https://habrastorage.org/r/w120/webt/59/cc/76/59cc7600c78a2239379574.jpeg)
JavaScript
4
Вклад в тег
$('.slick-arrow').on('click', function(){
var heights = [];
$('.slick-active').each(function(){
heights.push($(this).height());
});
$('#slider').height(Math.max.apply(null, heights));
});