I've searched around and found some javascript that will force the numbers to appear on a standard iPad keyboard, as follows:
jQuery("#"+this.questionId+" .InputText").attr('type', 'tel');
But I would like to only show the numeric keypad. I saw some mention of
inputmode = numericbeing supported for iOS devices and
pattern="[0-9]*"but I don't know how to integrate it with the above.
Any javascript pros know how to help?