Just include this simple script and IE, Firefox, and OS X Safari will support <input type="date">, without any dependencies, not even jQuery!
Support dynamically created inputs, so can be used in single page applications.
Forked from nodep-date-input-polyfill. Continuing as a separate project.
npm install --save date-input-polyfill
Add to your project:
- 
Webpack/Browserify:
require('date-input-polyfill');or alongside Babel:
import 'date-input-polyfill'; - 
Script Tag: Copy
date-input-polyfill.dist.jsfromnode_modulesand include it anywhere in your HTML. - 
This package also supports AMD.
 
- 
Easily Stylable: These are the default styles, which you may override with your own.
 - 
Polyfills
valueAsDateandvalueAsNumber: Learn more about these properties. They behave as getters and setters. - 
Keyboard Shortcuts:
Escwill hide the datepicker.Up/Downwill increment/decrement the date by one day. - 
Localization: Specify the datepicker's locale by setting the
langattribute of theinputelement. The default locale isen.<input type="date" lang="en" /> - 
Formatting: Specify the display format by setting the
date-formatattribute of theinputelement. The default format isyyyy-mm-dd. Available options list.<input type="date" date-format="mm/dd/yyyy" /> 
Run npm start or, for Cloud9 IDE users: npm run start-c9
Run npm run build