I'm using loads of inputs with HTML5 types (such as 'date' or 'time') using the jQuery Tools library. Some browsers (like Opera) automatically recognize that and, for example, transform the <input type="time" />
into a time input.
However, I do not want that behavior (since Opera's time input does not include seconds). Is there any common HTML5 way of disabling such special behavior?
Thanks, Remo
type=text
. – Artairtype='time'
might not be the right feature for you (at least not until it's more customisable). Just usetype='text'
. – Pekan