Open zachleat opened 8 years ago
Type the valid US Zip Code "02111" into an <input type="number"> field and it will truncate the leading zero.
<input type="number">
Workaround: use type="text".
type="text"
This is the same as #71: Safari 6 keeps the double version of the input, not the original string (which is not to say it's a duplicate, it's a different symptom)
Type the valid US Zip Code "02111" into an
<input type="number">
field and it will truncate the leading zero.Workaround: use
type="text"
.