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

Virtually any modern browser has a build-in date picker...

<input name="myfield" type="date" value="2014-06-27">
  • Comment on Re: Recommended approach for dealing with user-entered dates in webapp
  • Download Code

Replies are listed 'Best First'.
Re^2: Recommended approach for dealing with user-entered dates in webapp
by pdxperl (Sexton) on Jul 27, 2014 at 06:30 UTC
    Thanks, Is this summary not accurate then? http://caniuse.com/input-datetime

      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!