html - Input type="date" working in Chrome but not in Firefox -
i not html , have following problem web page: http://www.saranistri.com/saranistriwpnew/richiesta-online-di-foto-storiche/
if open using chrome can see there 2 date fields in can choose data correct format (there shown , down arrows increare or decrease data) if open page using firefox these field not correctly displayed (the 2 arrows not shown , date format not specified).
using firebug can see these implemented html section:
<p> periodo <br> da <span class="wpcf7-form-control-wrap date-from"> <input class="wpcf7-form-control wpcf7-date wpcf7-validates-as-date" type="date" value="" name="date-from"> </span> <span class="wpcf7-form-control-wrap date-to"> <input class="wpcf7-form-control wpcf7-date wpcf7-validates-as-date" type="date" value="" name="date-to"> </span> </p> as can see specified type="date". why chrome show correctly , firefox not? have same problem using explorer.
how can fix issue?
firefox (and ie) not support input type="date" yet. https://developer.mozilla.org/en-us/docs/web/html/element/input#browser_compatibility
you can use datepicker plugin @ leisure, browsers don't support native html5 input date
Comments
Post a Comment