// Create a new div element var div = document.createElement('div'); div.className = 'made-in-ksa'; // Create a new image element var img = document.createElement('img'); img.className = 'ksa-made-img'; img.src = 'https://i.imgur.com/GUyzpME.png'; img.alt = "كيتو دايت"; img.style.width = '100%'; img.style.height = '45px'; // Append the image to the div div.appendChild(img); // Get the target element by class name var targetElement = document.querySelector('.footer-vat'); // Append the div to the target element targetElement.appendChild(div); const copyrights = document.querySelector('.copyrights'); copyrights.innerHTML = 'حقوق التصميم محفوظة لدى keto9'; (function() { document.addEventListener("DOMContentLoaded", function() { let links = document.querySelectorAll("a"); links.forEach(link => { let url = new URL(link.href, window.location.origin); if (!url.pathname.endsWith("/") && !url.pathname.includes(".")) { link.href = url.pathname + "/" + url.search + url.hash; } }); // إعادة توجيه الصفحة الحالية إذا لم يكن بها "/" if (!window.location.pathname.endsWith("/") && !window.location.pathname.includes(".")) { window.history.replaceState(null, "", window.location.pathname + "/" + window.location.search + window.location.hash); } }); })();