Adding calendar or a date field will become easier with these libraries.
Table of Contents
PickMeUp
The plugin is a simple, powerful, customizable and lightweight standalone datepicker. There is no dependencies. It supports single/range/multiple selections, and ability to put custom content into dates.

pickmeup('.datepicker', { format : 'm/d/Y' });
jQuery datepicker
This is a simple date picker plugin.

<input class="datepicker"> $('.datepicker').datepicker(date: new Date(2020, 11, 18), startDate: '0d');
Pikaday
Pikaday is a lightweight date picker with less than 5kb minified and gzipped. It doesn’t depend on other scripts but still works well with Moment.js.

var picker = new Pikaday({ field: document.getElementById('datepicker'), format: 'D MMM YYYY', onSelect: function() { } });
Air datepicker
Air datepicker lightweight cross-browser jQuery plugin.
The plugin will automatically initialize on elements with class.datepicker
, options may be sent via data
attributes.

// Initialization $('#my-element').datepicker([options]) // Access instance of plugin $('#my-element').data('datepicker')