Skip to content Skip to sidebar Skip to footer

Ipad Disable Keyevent On Input

I am working on a solution that implements adding text to textboxes but I disable the normal key events and use a custom one. I disable the key event like this:

Solution 1:

Maybe you can make the textbox completely transparent (alpha:0), place it inside a div, and add the text to the div behind the textbox.

Solution 2:

I figured it out. Basically if you are going to customize key entry, you have to customize it on the key up and not the key down or key pressed in Javascript.

Post a Comment for "Ipad Disable Keyevent On Input"