Here is sample code:-
<input class="cal" type="text" id="cal3">
<select class="form_line_only form-control" name="ho_night" id="night">
<option selected> Night </option>
<option > 1 </option>
<option > 2 </option>
<option > 3 </option>
<option > 4 </option>
<option > 5 </option>
<option > 6 </option>
<option > 7 </option>
<option > 8 </option>
<option > 9 </option>
<option > 10 </option>
</select>
<input type="text" class="cal" id="cal4">
This is my js:-
$(document).ready(function() {
$("#cal3").datepicker({
showOtherMonths: true,
selectOtherMonths: true,
dateFormat: "dd/mm/y",
onSelect: function(selectedDate) {
//$("#cal4").datepicker("setDate", selectedDate);
var date = $(this).datepicker("getDate");
date.setDate(date.getDate() + 3);
$("#cal4").datepicker("setDate", date);
$("#cal4").datepicker( "option", "minDate", selectedDate );
}
});
$("#cal4").datepicker({
showOtherMonths: true,
selectOtherMonths: true,
dateFormat: "dd/mm/y",
onSelect: function(selectedDate) {
$("#cal3").datepicker( "option", "maxDate", selectedDate );
}
});
});
Here I want add day depend on dropdown select if dropdown select 1 than add day 1 in last datepicker. And I also want open last date picker on change dropdown. please suggest me. Here is demo
Nothing change on changing dropdown because there is no event attached to changing of dropdown.
Check this once. http://jsbin.com/petiguwezo/1/edit?html,js,output
What I am doing here is I am changing the second date whenever first date or dropdown is changing.