/* Add custom Js code below */ var Slider = document.querySelector("salla-slider#main-slider-0"); // تنفيذ الكود بعد تحميل الصفحة window.addEventListener('load', () => { if(window.innerWidth < 600){ // تعيين تأخير 3 ثواني setTimeout(() => { // استهداف العنصر الأساسي const sliderElement = document.querySelector('#app > div.app-inner.flex.flex-col.min-h-full > div > div'); // التأكد إن العنصر موجود if(window.location.href == "https://smartshopksa.com/" || window.location.href == "https://smartshopksa.com/ar" || window.location.href == "https://smartshopksa.com/en"){ if (sliderElement) { // إنشاء عنصر جديد const newElement = document.createElement('div'); // إضافة محتوى أو ستايل للعنصر الجديد newElement.innerHTML= `
`; newElement.style.backgroundColor = '#f0f0f0'; newElement.style.padding = '10px'; newElement.style.border = '1px solid #ccc'; // إدراج العنصر بعد العنصر الأساسي sliderElement.parentNode.insertBefore(newElement, sliderElement.nextSibling); } else { console.log('العنصر غير موجود!'); } } }, 3000); // تأخير لمدة 3000 مللي ثانية (3 ثواني) } });