This commit is contained in:
2019-07-29 11:31:38 +02:00
parent ca750f6bd7
commit f8b60fa805

View File

@@ -26,7 +26,7 @@
req.onreadystatechange = function () {
if (this.readyState === 4 && this.status === 200) {
console.log(this.responseText);
lensch.value = this.responseText;
lensch.innerHTML = this.responseText;
}
}
req.open("GET", "api.php?n=" + laufzeit.value);