pflichtfeld prüfung

This commit is contained in:
stitz 2020-08-11 12:59:54 +02:00
parent 94308cb2c7
commit 293a2a452d

View File

@ -10,3 +10,11 @@ addAutoresize = function() {
});
}
addAutoresize();
isset = function(id) {
if($('#'+id).val() == ''){
alert('Es wurden nicht alle Felder ausgefüllt.');
return false;
}
return true;
}