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.
Ach nein?Original von Nick H.
das geht nicht!
mit JavaScript kann man doch keine Tastatur Ereignisse abfragen
function Tastendruck () {
if(window.event.keyCode == 13){
alert("Enter gedrueckt");
}
}
document.onkeypress = Tastendruck;