I have been trying to use the new html5's input element of type 'time' to create a timepicker in my application.
After surfing the web about this issue for quite some time I have figured out that the time format in this input element is determined by:
- Timezone / time settings in the computer which is running the browser
- The browser itself
In some browsers I get the 12-hour notation with AM/PM displayed inside the element. Is there any way to force a 24-hour notation?
Code:
<input type="time"/>