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); }
link|improve this question
feedback

1 Answer

You need to normalize the Event interface, as IE doesn't pass it along as a parameter, but uses a global variable:

PriceInBox.onkeypress = function(event) {
    event = event || window.event;
    return moZoltarCurrent.evt_checkForInt(event);
};
link|improve this answer
Awesome It Works Thanks.... – Praveen Sep 23 '10 at 0:02
This long-standing irritation is finally fixed with the event model changes in IE9 Standards Mode. – bobince Sep 23 '10 at 0:16
1  
IE9 really does look to be making up a lot of ground standards-wise. – Tim Down Sep 23 '10 at 0:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.