// إنشاء عنصر script لتحميل مكتبة gtag.js const scriptTag = document.createElement('script'); scriptTag.async = true; scriptTag.src = "https://www.googletagmanager.com/gtag/js?id=G-FQ9PY9H4BJ"; // حقن العنصر في document.head.appendChild(scriptTag); // إنشاء سكريبت لإعداد gtag const inlineScript = document.createElement('script'); inlineScript.innerHTML = ` window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'G-FQ9PY9H4BJ'); `; // حقن السكريبت في document.head.appendChild(inlineScript);