jQuery Date Picker Plugin Ready made
Copy Below Code
View As A Text File
Show Text Only
Show API
Edit Code
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
var dateToday = new Date();
$(function() {
$( "#datepicker" ).datepicker({
numberOfMonths: 1,
showButtonPanel: true,
minDate: dateToday
});
});
<script>