javascript - IPad Disable keyevent on input -
i working on solution implements adding text textboxes disable normal key events , use custom one. disable key event this:
<input onkeypress="return false;" onkeydown="return false;" onkeyup="return false;" type="text">
now works fine on browsers(safari, firefox, ie) fails on ipad's safari , when user press key, entered twice. there way disable key events on input field ipad?
maybe can make textbox transparent (alpha:0), place inside div, , add text div behind textbox.
Comments
Post a Comment