X
Download App
Logo×
Settings
Contact
Privacy Policy
LIVE
Tue
18 Aug
Wed
19 Aug
TODAY
20 Aug
Fri
21 Aug
Sat
22 Aug
Ball

No data found

Fixture add to Favorites
// --- سكربت ضبط التوقيت التلقائي حسب بلد الزائر --- document.addEventListener("DOMContentLoaded", function() { // نبحث عن جميع العناصر التي تحتوي على كلاس local-time const timeElements = document.querySelectorAll('.local-time'); timeElements.forEach(el => { // نجلب التوقيت العالمي (timestamp) من العنصر const timestamp = el.getAttribute('data-timestamp'); if (timestamp && timestamp > 0) { // الجافاسكربت يتعامل بالثواني المليّنة (Milliseconds) لذلك نضرب في 1000 const date = new Date(timestamp * 1000); // استخراج الساعات والدقائق بتنسيق 24 ساعة حسب متصفح الزائر const options = { hour: '2-digit', minute: '2-digit', hour12: false }; const localTimeString = date.toLocaleTimeString([], options); // استبدال الوقت القديم بالوقت المحلي الجديد el.innerText = localTimeString; } }); });