Looking for a night of pure musical magic? We are so excited to present the first episode of RUMA SORA at RIUHxASEAN! Get ready for a soulful journey featuring a lineup that's pure poetry and rhythm: from the poetic grooves of D'Pujanggas, to the fresh contemporary sound of Cylypdy, and a powerful highlight performance from Langkasuka that blends tradition with modern indie flair. This isn't just a gig; it's a celebration of Malaysia's rich musical tapestry. Come and discover your new favourite local artist!
document.addEventListener("DOMContentLoaded", function () {
let items = document.querySelectorAll(".cms-list .w-dyn-item"); // Select CMS items
let loadMoreBtn = document.querySelector(".load-more-btn");
let itemsToShow = 6; // Number of items to show at first
let currentIndex = 0;
function showItems() {
for (let i = currentIndex; i < currentIndex + itemsToShow; i++) {
if (items[i]) items[i].style.display = "block";
}
currentIndex += itemsToShow;
if (currentIndex >= items.length) loadMoreBtn.style.display = "none"; // Hide button when all items are shown
}
showItems();
loadMoreBtn.addEventListener("click", showItems);
});