t-r.de/content/js/Message.js
2025-03-06 17:30:49 +01:00

9 lines
278 B
JavaScript

let query = new URLSearchParams(location.search);
let msg = 'keine Fehlermeldung gefunden';
if (query.has('msg')) {
msg = query.get('msg');
}
if ( document.getElementById('error-msg').firstChild != null ) {
document.getElementById('error-msg').firstChild.nodeValue = msg;
}