Weโre baaaaack! ๐ Come join us for RIUH RAYA SOUK ๐ โข 23 & 24 April โข 4pm - 12 midnight โข Sentul Depot (@sentuldepot) You know the drill: ๐ Shop for your Baju Raya with exclusive deals ๐ฅ Buka with amazing food ๐ถ Kick back to acoustic sets โ๏ธ Get crafty with workshops ๐ผ Immerse yourself in exhibitions NO PRE-BOOKING! See you there ๐คฉ๐ฅณ Artwork by @huittong ๐
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);
});