/* Add custom JS code below */ window.addEventListener('load', function () { // Get the target element using the query selector const gridElement = document.querySelector('.index .banner-images .content-image'); // Check if the gridElement exists if (gridElement) { // Create the HTML for the link and image const linkHTML = `
مستلزمات الجوال

مستلزمات الجوال

أحدث الاجهزة بأحسن الاسعار

`; // Insert the HTML at the end of the target element gridElement.insertAdjacentHTML('beforeend', linkHTML); } });