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" />
Use this
$('#input').focus(function() { this.blur(); });