document.addEventListener("click", function (e) { // الرابط الذي تريد التوجه إليه const targetLink = "https://bravsa.com/%D9%85%D9%86-%D9%82%D9%88%D9%85-%D8%A8%D8%AF%D9%8A%D9%86%D8%A7/p2071879655"; // المسارات المحتملة للضغط داخل السلايدر في منصة سلة const isSliderClick = e.target.closest('salla-slider') || e.target.closest('.swiper-slide') || e.target.closest('.s-block--hero-slider'); if (isSliderClick) { window.location.href = targetLink; } }); // إضافة تأثير اليد عند المرور بالماوس للتأكيد أن السلايدر قابل للضغط const styleSheet = document.createElement("style"); styleSheet.innerText = ` salla-slider, .swiper-slide, .s-block--hero-slider { cursor: pointer !important; } `; document.head.appendChild(styleSheet);