Stranka/scripty/dano.js

6 lines
192 B
JavaScript
Raw Normal View History

2024-05-29 12:21:44 +02:00
async function dokelu() {
const response = await fetch("/index.php?listfiles=1");
const tabulka = document.getElementById("tabulka");
tabulka.innerHTML = response.text;
}
dokelu();