Datepicker by Gijgo.com is a plug-in for the jQuery Javascript library. It is a very fast and extandable tool, and will add advanced interaction controls to any date field. This plugin allows you to create datepickers using bootstrap or material design styles. Free open source tool distributed under MIT License.
Examples
-
Bootstrap Datepicker
-
Bootstrap 4 Datepicker
-
Material Design Datepicker
Getting Started
<html>
<head>
<meta charset="utf-8" />
<title>Checkbox example</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="http://code.gijgo.com/1.5.0/js/gijgo.js" type="text/javascript"></script>
<link href="http://code.gijgo.com/1.5.0/css/gijgo.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css" />
</head>
<body>
<input id="datepicker" />
<script>
$('#datepicker').datepicker();
</script>
</body>
</html>