Stranka/scripty/dano.js

6 lines
200 B
JavaScript
Raw Permalink 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");
2024-05-29 12:23:19 +02:00
tabulka.innerHTML = await response.text();
2024-05-29 12:21:44 +02:00
}
dokelu();