//Bitte denken Sie daran, Platzhalter entsprechend an Ihre Feldnamen anzupassen! // Skript zur Konfiguration eines Buttons, der die Eingabe des Feldes "myUrl" in einem neuen Browsertab öffnet var url = container.get('myUrl'); var sanitizedUrl = url; var protocolFound = /^https?:\/\//.test(url); if (!protocolFound) { sanitizedUrl ='http://' + sanitizedUrl; } var newTab = window.open(sanitizedUrl, '_blank'); newTab.focus();