Disable Android / iOS keyboard for specific input fields

I would like to disable or hide the keyboard on Android and iOS in certain input fields.

Is it possible? sort of

<input type="text" name="date" keyboard="disable" />
+4
source share
1 answer

Use this

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

All Articles