Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Naja, jetzt noch was neues passt mir nicht. kenne sowas von Javascript ->
Wert Textfeld mit ID 1 bei OnChange ind Textfeld mit ID 2 schreiben...
kennt jemand 'ne schnelle Lösung?
document.getElementById('id1').onchange = function() {
document.getElementById('id2').value = document.getElementById('id1').value;
}