ITโS TIME FOR A WEEKEND RETREAT ๐๐ We are so pumped for our 1st stop of Kembara RIUH 2023 where this time around โ we will be located at the beautifully soothing land of Kuala Kubu Bharu! ๐ You know the drill: ๐ณ Shop from our local brands ๐ด Feast on the best F&B dishes ๐ต Singalong with awesome performances โ Try a craft in our creative workshops ๐ผ Immerse yourself in exhibitions Happening this 28 to 30 July 2023 at Fraser Valley - Kuala Kubu Bharu, donโt miss out the fun and letโs celebrate the creatives! ๐ฑ Poster by @uinuniu #MyCreativeGroup #KembaraRIUH #riuhinthecity
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);
});