/* === Scroll to TOP of the same mag-box after Ajax ‘Load More’ === */ jQuery(function ($) { let $currentSection = null; // سيحفظ القسم المُفعّل /* ❶ عند الضغط على زرّ "اظهر المزيد" داخل أى قسم */ $(document).on('click', 'a.show-more-button', function () { // احفظ أقرب حاوية لأخبار هذا القسم (mag-box) $currentSection = $(this).closest('.mag-box'); }); /* ❷ بعد أى إستجابة Ajax ناجحة */ $(document).ajaxSuccess(function () { // لو كان لدينا قسم مُحدّد سلفــاً if ($currentSection) { $('html, body').animate( { scrollTop: $currentSection.offset().top - 60 }, // 60px هو هامش من رأس الصفحة 450 // مُدّة الحركة بالمللى-ثانية ); $currentSection = null; // إعادة الضبط للمرّة التالية } }); });

النائب خالد مشهور

زر الذهاب إلى الأعلى
Verified by MonsterInsights