Does anyone know what is going on here? When I pressed the key once, in IE8 it's always calls the function in javascript twice. It's working fine by only call the fundtion once when the keypredd in firefox but not in IE8.
HTML:
<input onkeypress="return isNumberKey(event, this);" />
Javascript:
function isNumberKey(evt, obj)
{
alert('unavailable').
return false
}