Hallo nochmal,
Heureka!
function welche (e) {
var e = e || window.event;
var taste = e.which || e.keyCode;
if(e.preventDefault) {
e.preventDefault();
} else {
e.returnValue=false;
}
alert(taste);
}if (window.captureEvents) {
window.captureEvents(Event.KEYPRESS);
window.onkeypress=welche;
} else {
document.onkeypress=welche;
// Falscher Eventhandler: Mit onkeydown funktioniert das auch im IE:
document.onkeydown=welche;
//jetzt kann ich ja weiterarbeiten ;-)
}
Gruß Gernot