Vucic proposes Serbia as the host for potential talks between Putin and Trump
ANSA/EPA
Serbian President Aleksandar Vucic has proposed Serbia as a possible location for talks between Russian President Vladimir Putin and U.S. President-elect Donald Trump, offering to ensure their security, News.Az citing the ';
}
// Ayın gün hüceyrələri
for (let i = 1; i <= totalDays; i++) {
const dateURL = `https://news.az/time/${selectedYear}/${selectedMonth}/${i}`;
html += `${dayCounter} `;
dayCounter++;
if ((i + startDay) % 7 === 0) {
html += '';
}
}
// Son boş gün hüceyrələri - sonuncu il üçün
if (selectedYear === parseInt(yearSelect.lastElementChild.value) && selectedMonth === 12) {
const remainingDays = 7 - ((totalDays + startDay) % 7);
for (let i = 0; i < remainingDays && i < 6; i++) {
html += ' ';
}
}
daysContainer.innerHTML = ` ${html} `;
}
// Ay və ya il seçimi dəyişdikdə kalendarı yeniləmək
monthSelect.addEventListener('change', updateDays);
yearSelect.addEventListener('change', updateDays);
// Başlangıçda kalendarı yükləmək üçün
updateDays();
});





