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.

link|improve this question

67% accept rate
Try: var date = new Date($('#gp_vdate_from').val()); – Shadow Wizard Feb 9 at 12:52
try the following link stackoverflow.com/questions/2875389/… – Partha Feb 9 at 12:55
Thanks But none is working. It disables the date selection itself – Cyphon Feb 9 at 13:04
feedback

1 Answer

try:

$('#gp_vdate_from, #gp_vdate_to').datepick({ dateFormat: 'dd-mm-yyyy',minDate: new Date(date), showTrigger: '#calImg' });
link|improve this answer
Thanks for your help But It disables the selection of the date. not able to select the date after doing this. – Cyphon Feb 9 at 13:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.