pignose.calendar.js is a beautiful and eidetic jQuery date picker plguin, it supports some kinds of thems. For example: dark and blue themes. We can use it to create some very beautiful date picker for our web application.
How to use it?
1.Insert snippets at <head> tag of your html file
<script src="./dist/js/pignose.calendar.min.js"></script> <link type="text/css" href="./dist/css/pignose.calendar.min.css" />
2.Create a div tag to show date picker
<div class="calendar"></div>
3.Init it using javascript
$(function() { $('.calendar').pignoseCalendar({ theme: 'dark' // light, dark, blue }); });