Hallo Mathias,
danke für Deine Antwort. Ein kleines Problem habe ich noch:
So funktioniert's im IE, nicht aber in Mozilla:
<head>
...
<script type="text/javascript">
function kp(e)
{
if (!e) e=window.event; // für IE
if (e.keyCode==27)
{
self.close();
}
}
</script>
</head>
...
<body onkeypress="kp()">
...
So im Mozilla, aber nicht im IE:
<head>
...
<script type="text/javascript">
function kp(e)
{
if (!e) e=window.event; // für IE
if (e.keyCode==27)
{
self.close();
}
}
window.onkeypress=kp;
</script>
</head>
...
<body>
...
Kann man das irgendwie für beide Browser funktionsfähig machen?
Danke!
Tim