I have used the following date picker function for start date.
var date = new Date();
date.setDate(date.getDate()-1);
$('.datepickstart').datepicker({
autoclose: true,
todayHighlight: true,
format: 'dd/mm/yyyy',
startDate: date
})
Pls give me a solution for an end date to be greater than that of selected start date for the above used code. And also the third date field to be greater than of second field. Pls provide me a solution. Thanks