Adding type date to input fields now produces a browser based date picker. (Where supported).
<input type="date"></input>

This is fantasic for touch devies however...
When browsing with the meat of the market: firefox and internet explorer, type date is not supported.
QUESTION
How to use input type="date" and fallback to a javascript date picker when support is not available?
Currently I cant seem to get the best of both worlds without producing both date pickers simultaneously.
type=dateshould report the type as the defaulttextwhen it’s queried via JS …