jQuery(document).ready(function($){ $(document).on('click', '.more', function(e){ e.preventDefault(); // جلوگیری از رفتن به # const box = $(this).siblings('.text-box'); if(box.hasClass('open')){ // Collapse box.height(box.get(0).scrollHeight); // ابتدا ارتفاع فعلی box.removeClass('open'); box.height(100); // کاهش به ارتفاع اولیه } else { // Expand const fullHeight = box.get(0).scrollHeight; box.addClass('open').height(fullHeight); // افزایش ارتفاع واقعی } }); }); });