const spanElement = document.querySelector("span.text-sm.copyright-text"); // التحقق من وجود العنصر if (spanElement) { // إنشاء عنصر الرابط (a) const linkElement = document.createElement("a"); // إضافة النص داخل الرابط linkElement.textContent = "جميع الحقوق محفوظة لأوريما صنع بواسطة قرينرز"; // تعيين الرابط الخاص بالعنصر linkElement.href = "http://grinners.ai/"; // فتح الرابط في نافذة جديدة linkElement.target = "_blank"; // إفراغ محتوى العنصر الحالي spanElement.textContent = ""; // إضافة الرابط داخل العنصر span spanElement.appendChild(linkElement); } let esm = "اوريما | ORIMA"; let link = "https://orimagroup.com/ar/"; document.addEventListener("DOMContentLoaded", function () { // let copyright = document.querySelector(".copyright-text p"); if (copyright) { copyright.innerHTML = ` جميع الحقوق محفوظة لـ ${esm} | 2026 `; }