display: none
), ensuring each item has a class (e.g., .collection-item
)..random-button
) and an empty div (#random-output
) where the selected item will be displayed.Yes, you can achieve this using custom JavaScript while ensuring no sensitive data or API keys are exposed. Below is how you can do it:
display: none
so it doesn't show all items by default..collection-item
)..random-button
).#random-output
).Embed the following custom JavaScript in your Webflow page before the closing </body>
tag:
```js
document.addEventListener("DOMContentLoaded", function () {
const items = Array.from(document.querySelectorAll(".collection-item"));
const button = document.querySelector(".random-button");
const output = document.querySelector("#random-output");
button.addEventListener("click", function () {
if (items.length === 0) return;
const randomItem = items[Math.floor(Math.random() \* items.length)]; output.innerHTML = ""; output.appendChild(randomItem.cloneNode(true)); output.style.display = "block";
});
});
```
#random-output
container.You can display a random Webflow CMS item without page loads by hiding the Collection List and using JavaScript to pick and reveal a random item. This approach avoids API usage, keeping it secure and lightweight.