/* Add custom Js code below */ document.addEventListener("DOMContentLoaded", function () { // Find the #best-offers-1-slider element var slider = document.querySelector("#best-offers-1-slider"); if (slider) { // Create the new element var newLink = document.createElement("a"); newLink.href = "https://tableksa.com/latest-products"; newLink.className = "shpw-more undefined s-button-element s-button-btn s-button-outline s-button-sm s-button-wide s-button-primary s-button-loader-center"; newLink.style.marginTop = "20px"; newLink.appendChild(document.createTextNode("عرض جميع المنتجات")); // Append the new element to the end of the slider slider.appendChild(newLink); } else { console.error("Element #best-offers-1-slider not found."); } var section = document.querySelector('section.s-block.s-block--fixed-banner'); if (section) { // Define the new element as a string var newElement = '' + 'عرض جميع المنتجات' + ''; // Add the new element to the end of the section section.insertAdjacentHTML('beforeend', newElement); } else { console.warn('The section.s-block.s-block--fixed-banner element was not found.'); } });