Tag: DJ Yash Yadav
DJ Yash Yadav who makes audience go crazy with his rocking...
Whether it is a local event, a nightclub, dance club or an official party, it is...
Whether it is a local event, a nightclub, dance club or an official party, it is...
No news available at the moment.
`; return; } newsItems.forEach((item) => { const newsItem = document.createElement("div"); newsItem.className = "news-item"; newsItem.innerHTML = `${item.description}
`; widgetContainer.appendChild(newsItem); }); } // Initialize the widget async function initializeWidget() { let newsItems = await fetchNewsFromAPI(); // Try fetching from API first if (!newsItems) { newsItems = await fetchNewsFromRSS(); // Fallback to RSS feed if API fails } displayNews(newsItems); } initializeWidget(); })();