Änderungen Dienstag

This commit is contained in:
aschwarz
2023-03-21 14:17:05 +01:00
parent 5d8b00feba
commit b9e9f89a3d
42 changed files with 14307 additions and 4634 deletions

View File

@ -2,7 +2,7 @@
function onClickDelete(id){
document.getElementById("antwort").value= "";
r = confirm('Antwort löschen?');
r = confirm('Antwort löschen1?');
if(r) {
$.ajax({
type: 'POST',
@ -13,10 +13,12 @@ function onClickDelete(id){
'spalte': 'uaid',
'id': id
},
success: function(result){
// document.getElementById("del").innerHTML = "<strong>entfernt</strong>";
//Text einblenden geht nicht, da ein Refresh gemacht wird. Dann sieht man den Text nicht
}
success: function(result) { //we got the response
alert(result);
},
error: function(xhr, status, exception) {
console.log(xhr);
}
});
}
}