Reputation: 8621
I'm trying to use an HTML input element with type="time"
, but I'm getting unexpected results. I have two of these on a page, one of them works and one does not.
<td>
<input type="time" class="uk-input" value="7:30:00" name="timein[]"/>
</td>
<td>
<input type="time" class="uk-input" value="16:00:00" name="timeout[]"/>
</td>
The first element will be rendered blank, why?
Upvotes: 4
Views: 16395