$(document).ready(function() { $('.more-photos').on("click", function (event) { event.preventDefault(); $('.photos').toggleClass('open'); if($('.photos').hasClass('open')) { $(this).text('Скрыть'); } else { $(this).text('Показать еще фото'); } }); }); $(document).ready(function(){ if($(".catalog-content").outerHeight()>$(".photos").outerHeight()){ $(".photos").css({"max-height":$(".catalog-content").outerHeight()}); } });