HTML5 Time Element in Form with Milliseconds

forms, html, validation

Solution

This works:

<input type="time" step="0.001"></input>

Live preview: http://jsbin.com/giqikelumu/edit?html,output

Problem

There are several examples of HTML5 form options on this page, including the "time" element. Is it possible to force the time element to include a millisecond component? I'm not concerned for the fallback option where a plain text box is used.

Original source