Kod ise bu:
<script>var highest = 0;
function sortNumber(a, b) {
return a - b;
}
var maxHeight = function () {
var heights = [],
grid = $('.product-thumb h4');//this is the part that changes in height. change to suit your needs
grid.each(function () {
$(this).css('height', 'auto');
heights.push($(this).height());
heights = heights.sort(sortNumber).reverse();
});
highest = heights[0];
grid.each(function () {
$(this).css('height', highest);
});
};
$('#grid-view,#list-view').click(function () {
maxHeight();
});
$(window).resize(maxHeight());</script>