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.
Hallo,
gibt es in Html/Javascript die Möglichkeit eine Tabellenzeile ein/auszublenden indem, man eine Funktionstaste drückt?
<script type="text/javascript">
document.onkeydown = Tastendruck;
function Tastendruck (Evenement) {
if (!Evenement)
Evenement = window.event;
if (Evenement.which) {
Tastencode = Evenement.which;
} else if (Evenement.keyCode) {
Tastencode = Evenement.keyCode;
}
taste(Tastencode);
}
function taste(Tastencode){
if (Tastencode == 70) { [COLOR=red]|[/COLOR] }
}
</script>