$(document).ready(function(){ if ($('.js-inner-description').height() > 100) { $('.js-show-more').show(); } else { $('.js-description').css('height', 'auto'); } $('.js-show-more').click(function(){ $(this).hide(); $('.js-description').animate({ 'height' : $('.js-inner-description').height() + 'px' }, 'fast'); }); });