This commit is contained in:
2026-03-20 17:13:38 +01:00
parent 4c84735b75
commit c043ee9a52
1152 changed files with 317560 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
function zweitterminpruefen() {
var e = document.getElementById("Terminzeitraum");
var timeidjs = e.value;
var e = document.getElementById("impfart");
var impfart = e.value;
if(impfart == 2){
result = $.ajax({
type: 'POST',
async: false,
url: 'inc/zweittermin.php',
data: ({
timeid: timeidjs
})
}).responseText;
document.getElementById("Zweittermin").innerHTML = $result;
}
}