in reply to Re: Recommended approach for dealing with user-entered dates in webapp
in thread Recommended approach for dealing with user-entered dates in webapp

Thanks, Is this summary not accurate then? http://caniuse.com/input-datetime
  • Comment on Re^2: Recommended approach for dealing with user-entered dates in webapp

Replies are listed 'Best First'.
Re^3: Recommended approach for dealing with user-entered dates in webapp
by tobyink (Canon) on Jul 27, 2014 at 06:54 UTC

    For those browsers without support for type="date", the input field falls back to text entry.

    Also, there exists Modernizr.js, which is a useful shim to add support for recent HTML features to older browsers.

      Oh cool -- thanks for that, I'll check it out!