Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is my code and it is not working correctly. I want to set minDate to current date. How to do it ?

$("input.DateFrom").datepicker({
                changeMonth: true, changeYear: true, dateFormat: 'yy-mm-dd',
                maxDate: 'today',
                onSelect: function(dateText) {
                    $sD = new Date(dateText);
                     $("input#DateTo").datepicker('option', 'minDate', min);

                }
share|improve this question
Where did min magically come from in your code? Surely you want to pass $sD instead. – Anthony Grist Feb 11 at 10:48

3 Answers

You can specify minDate as today by adding minDate: 0 to the options.

$("input.DateFrom").datepicker({
    minDate: 0,
    ...
});

Demo: http://jsfiddle.net/2CZtV/

Docs: http://jqueryui.com/datepicker/#min-max

share|improve this answer

You can use the minDate property, like this:

$("input.DateFrom").datepicker({
    changeMonth: true, 
    changeYear: true, 
    dateFormat: 'yy-mm-dd',
    minDate: 0, // 0 days offset = today
    maxDate: 'today',
    onSelect: function(dateText) {
        $sD = new Date(dateText);
        $("input#DateTo").datepicker('option', 'minDate', min);
    }
});

You can also specify a date, like this:

minDate: new Date(), // = today
share|improve this answer

Use this one :

 onSelect: function(dateText) {
                 $("input#DateTo").datepicker('option', 'minDate', dateText);
            }

This may be useful : http://jsfiddle.net/injulkarnilesh/xNeTe/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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