I'm working on updating some form inputs to HTML5. I'm not interested in validating the data so much as having the numeric key pad on mobile devices. Input type 'tel' seems to do what I want, I get the numeric keypad on iPad/mobile. Input type 'number' will also give me the numeric keypad, but it also includes the spinner box which I don't want.

What I want to know is if it's safe to use type="tel" on a credit card input? Or should I use type="number" and try to disable the spinner somehow. I was reading that disabling the spinner can crash Chrome which isn't a trade off I'm willing to make.

Also, for the time being we're using the exact same site for mobile and non-mobile users. Thanks in advance!

link|improve this question

75% accept rate
feedback

2 Answers

up vote 0 down vote accepted

I looked at this and just tried this on my Xoom with the built in browser and FF mobile (with a desktop UA string) and the tel input would seem to work just fine for this.

screeny

link|improve this answer
1  
I guess what I'm afraid of is using 'tel' for a credit card number and having the form not submit because the browser doesn't think it's a valid telephone number (which it isn't obviously) – Adam Nov 23 '11 at 14:47
the browser did not attempt to do any validation on the number in either browser, or the desktop browsers – Eonasdan Nov 23 '11 at 16:14
feedback
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.