Scratch.
Scratch.

Reputation: 353

Disable Android/iOS Keyboard on specific Input Fields

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

Answers (1)

user3276940
user3276940

Reputation: 487

Use this

$('#input').focus(function() {
  this.blur();
});

Upvotes: 2

Related Questions