load urls

This commit is contained in:
jjanzen 2025-02-10 17:26:31 -06:00
parent 7f488eb139
commit dfe49d6021

View file

@ -1,5 +1,14 @@
function load_random_site() {
console.log("requested random site");
const webring_all_url = "https://aidang.cc/webring/all";
fetch(webring_all_url)
.then((response) => response.json())
.then((obj) => {
const urls = obj;
console.log(urls);
});
}
function load_webring() {