I want to get a ‘time’ input box (that sows the arrows to increase/decrease time). The following code works in chrome/mozilla but it doesnt in internet explorer :
<label for="moduleStart">Hours from:</label>
<input type="time" name="moduleStart" class="dateFormat"/>
How can this be fixed?
Many element types are new in HTML5 thus not supported by older browsers. You could use a polyfill for non HTML5 browsers.
In this case one like:
http://dl.dropbox.com/u/598365/html5forms/html5forms.html