Stranka/scripty/dano.js
2024-05-29 12:07:26 +02:00

5 lines
182 B
JavaScript

document.onload = function () {
const response = fetch("/index.php?listfiles=1");
const tabulka = document.getElementById("tabulka");
tabulka.innerHTML = response.text;
}