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