Ich versuche leider erfolglos im Netscape 4.X das auslesen ob Entertaste geklickt würde zu realisieren.
Hier ein Beispiel wie es im IE klappt:
Vielen Dank!!!!
<html>
<head>
<title></title>
</head>
<body>
<script LANGUAGE="JavaScript">
<!-- Begin
function document.onkeypress () {
if (window.event.keyCode == 13) {
alert("Please Click on the Submit button to send this");
}
}
// End -->
</script>
</body>
</html>