I am trying to solve this problem. Still I have done this,
$(function() {
$( "#datepicker" ).datepicker({
dateFormat: 'yy-mm-dd',
firstDay: 1,
minDate:1
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<input type="text" id="datepicker">
If you run this code you can see the calendar.
I want to disable the full current week. The available dates will start from next week.
As, Example, today is 18.07.2016
. So, if someone want to use this calendar then this full week become inactive. Next available date will start from 24.07.2016
.
Thanks in advance for help.