- Home
- Symbol: Headers
It seems we can't find what you're looking for. Perhaps searching can help.
Page 1 of 8
document.addEventListener('DOMContentLoaded', function () { var urlPath = window.location.pathname; // الحصول على المسار الكامل من الرابط var affiliateId = urlPath.split('/')[4]; // تقسيم الرابط واستخراج معرّف الشريك من الجزء الذي يأتي بعد '/ref/' console.log('Affiliate ID from URL:', affiliateId); // طباعة معرّف الشريك في الـ Console if (affiliateId) { var affiliateField = document.querySelector('input[name="affiliate_id"]'); // العثور على الحقل المخفي في النموذج if (affiliateField) { affiliateField.value = affiliateId; // تعيين معرّف الشريك في الحقل المخفي console.log('Affiliate ID inserted into the hidden field'); // طباعة نجاح العملية } } });