jQuery(function() { jQuery('.equal-height-box .fusion-text p').matchHeight(); jQuery('.login-register-inner').matchHeight(); }); jQuery(document).ready(function($) { $(document).on('click', '.team-more-content #team_read_more', function(e) { e.preventDefault(); $(this).closest('.team-more-content').css({'height': 'auto'}); var h = $(this).closest('.team-more-content').height(); $(this).closest('.team-more-content').css({'height': '300px'}); $(this).closest('.team-more-content').animate({height: h},300); $(this).closest('.team-more-content').addClass('less'); $(this).hide(300); }); });
Go to Top