Create your custom date pickers form input[type="date"]
.
Check out this Demo to see it in action.
Extended documentation is available here: Documentation
Default HTML markup looks like:
<input type="date" class="form-input" name="date"/>
Note: you can use any class. form-input was used just for example
Next, include the styles:
<link rel="stylesheet" href="path/to/css/rd-datepicker.css">
Include the script:
<script src="js/rd-datepicker.min.js"></script>
Finally, initialize the script:
$(document).ready(function () {
o.RDDatePicker(); // Additional options
});
Check out our extended documentation for additional instructions: Documentation
Licensed under dual CC By-SA 4.0 and GPLv3