I am using jQuery datepick . what I want to do is I want to set the mindate for 'from' option based upon the date selected in the 'to option'. I tried something like this but did not worked.
$(document).ready(function() {
var date='#gp_vdate_from';
$('#gp_vdate_from, #gp_vdate_to').datepick({ dateFormat: 'dd-mm-yyyy',minDate: date, showTrigger: '#calImg' });
});
It works naturally but does not consider the mean date. I saw some answers in stackoverflow but none helped. Hope to get response. Don't mind if this is too easy for you as I am just learning to use jquery.
var date = new Date($('#gp_vdate_from').val());– Shadow Wizard Feb 9 at 12:52