Reputation: 353
I would like to disable or hide the Keyboard on Android and iOS on specific Input fields.
is this possible? something like
<input type="text" name="date" keyboard="disable" />
Upvotes: 4
Views: 4654
Reputation: 487
Use this
$('#input').focus(function() { this.blur(); });
Upvotes: 2