I have onKeypress Event in Text Box This Works in FireFox, does not in IE
event is passed as undefined in IE
PriceInBox.onkeypress = function(event) { return moZoltarCurrent.evt_checkForInt(event); }
|
I have onKeypress Event in Text Box This Works in FireFox, does not in IE event is passed as undefined in IE
| ||||
|
feedback
|
|
You need to normalize the Event interface, as IE doesn't pass it along as a parameter, but uses a global variable:
| |||||||||
feedback
|