kstyrose

Results 2 comments of kstyrose

Try to replace keydownevent function with this one, sometimes keypress is not fired in the devices. ``` function keydownEvent(e) { e = e || window.event; var key = e.which ||...

I changed the keydown handler because in windows phone it seems that the onkeypress is not fired. Applied the format to the input at keydown event for windows phone, added...