load urls
This commit is contained in:
parent
7f488eb139
commit
dfe49d6021
1 changed files with 9 additions and 0 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue