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

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.

  • Comment on Re^3: Recommended approach for dealing with user-entered dates in webapp
  • Download Code

Replies are listed 'Best First'.
Re^4: Recommended approach for dealing with user-entered dates in webapp
by pdxperl (Sexton) on Jul 27, 2014 at 07:07 UTC
    Oh cool -- thanks for that, I'll check it out!