I am using to datepicker fields, one for a Start date and one for an End date. I have got everything almost working as I require however I am struggling to get the End date field to update automatically when the start date field is selected if I don't have a default date. It work's fine if I have a default date in place but I need it to be blank in this case. I have setup the code on jsFiddle and would be extremely grateful if someone could point out how I can achieve this result.

http://jsfiddle.net/clj83/7TvKr/

Here is the code below which is almost working.

$(function(){
var dates = $('#cntnt01cd_fax, #cntnt01cd_telephone').datepicker({
    dateFormat: 'yy/mm/dd', changeMonth: false, changeYear: false, numberOfMonths: 3, showOtherMonths: true, selectOtherMonths: true,
    onSelect: function(selectedDate) {
        var option = this.id == 'cntnt01cd_fax' ? 'minDate' : 'maxDate';
        var instance = $(this).data('datepicker');
        var date = $.datepicker.parseDate(instance.settings.dateFormat || $.datepicker._defaults.dateFormat, selectedDate, instance.settings);
        dates.not(this).datepicker('option', option, date);
    }
});
});

<div class="form_title">
Start Date
</div>
<div class="datepicker">
<input type="text" class="cntnt01cd_fax" name="cntnt01cd_fax" id="cntnt01cd_fax" value="" size="30" maxlength="255" />
</div>

<div class="form_title">
End Date
</div>
<div class="datepicker">
<input type="text" class="cntnt01cd_telephone" name="cntnt01cd_telephone"     id="cntnt01cd_telephone" value="" size="30" maxlength="255" />
</div>

Thanks

link|improve this question
I don't quite understand what it is you want to achieve. Can you describe what you do in steps and then state the desired/current outcome of those steps? – Benny Johansson Jan 3 at 18:01
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.