get random entry

This commit is contained in:
jjanzen 2025-02-10 17:28:49 -06:00
parent dfe49d6021
commit 2749a3aa44

View file

@ -6,8 +6,11 @@ function load_random_site() {
fetch(webring_all_url)
.then((response) => response.json())
.then((obj) => {
const urls = obj;
console.log(urls);
const entries = obj;
console.log(entries);
const entry = entries[Math.floor(Math.random() * entries.length)];
console.log(entry);
});
}