جاري تحميل مباريات اليوم...
async function fetchMatches() {
// استبدل الرابط أدناه برابط الـ Raw الخاص بملفك على GitHub
const githubRawUrl = 'https://raw.githubusercontent.com/Mriridz583/match/refs/heads/main/todaymatches.json';
try {
const response = await fetch(githubRawUrl);
const data = await response.json();
const container = document.getElementById('matches-display');
container.innerHTML = ''; // مسح رسالة التحميل
data.forEach(match => {
// النموذج (Template) الخاص بك مع تعويض المتغيرات
const matchHTML = `
${match.result1}
-
${match.result2}
`;
container.innerHTML += matchHTML;
});
} catch (error) {
console.error('Error fetching matches:', error);
document.getElementById('matches-display').innerHTML = 'فشل تحميل المباريات حالياً.';
}
}
// تشغيل الدالة فور تحميل الصفحة
fetchMatches();