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

How do I disable past dates on jQuery datepicker? I looked for options but don't seem to find anything that indicates the ability to disable past dates.

UPDATE: Thanks yall for the quick response. I tried that with no luck. Days were still not grayed out as I expected and still accept the selected past date.

I tried this:

$('#datepicker').datepicker({ minDate: '0' });

Doesn't work.

I tried this:

$('#datepicker').datepicker({ minDate: new Date() });

Still doesn't work either.

It displays the calendar widget just fine. It just won't gray out or prevent input of past days. I've attempted the minDate and maxDate in the past with no luck so I figured it must not be them.

share|improve this question

9 Answers

Try this:

$("#datepicker").datepicker({ minDate: 0 });

Remove the quotes from 0.

share|improve this answer
That worked great! – David K Egghead Aug 10 '12 at 3:49
This should be the accepted answer. – BWDesign May 10 at 10:58

You just need to specify a minimum date - setting it to 0 means that the minimum date is 0 days from today i.e. today. You could pass the string '0d' instead (the default unit is days).

$(function () {
    $('#date').datepicker({ minDate: 0 });
});
share|improve this answer

Use the minDate option to set the minimum possible date. http://jqueryui.com/demos/datepicker/#option-minDate

share|improve this answer
1  
+1: I've used minDate and maxDate to set a valid date interval and it works like a charm. – Jim Ferrans Nov 23 '09 at 22:18

This works:

$("#datepicker").datepicker({ minDate: +0 });
share|improve this answer
This solution works indeed! – Michiel Aug 20 '11 at 14:06

I was facing the same problem. I removed the quotes surrounding 0 and added a comma after 0, and now it works!

$('#datepicker').datepicker({ minDate: 0, });
share|improve this answer
1  
Any explanation as to why comma is needed? I can remove it and everything still functions properly. Is there some browser that requires a comma for a single property object? – schickm Jun 24 '12 at 14:53

If you are dealing with a previously bound date picker then setting

$("#datepicker").datepicker({ minDate: 0 });

will not work. That syntax is applicable only when you are creating the widget.

To set min date for a bound date picker use the following:

$("#datePicker").datepicker("option", "minDate", 0);
share|improve this answer

I am using following code to format date and show 2 months in calendar...

<script>
$(function() {

    var dates = $( "#from, #to" ).datepicker({

        showOn: "button",
        buttonImage: "imgs/calendar-month.png",
        buttonImageOnly: true,                           
        defaultDate: "+1w",
        changeMonth: true,
        numberOfMonths: 2,

        onSelect: function( selectedDate ) {




            $( ".selector" ).datepicker({ defaultDate: +7 });
            var option = this.id == "from" ? "minDate" : "maxDate",


                instance = $( this ).data( "datepicker" ),
                date = $.datepicker.parseDate(
                    instance.settings.dateFormat ||
                    $.datepicker._defaults.dateFormat,
                    selectedDate, instance.settings );

            dates.not( this ).datepicker( "option", "dateFormat", 'yy-mm-dd' );


        }
    });
});

</script>

The problem is I am not sure how to restrict previous dates selection.

share|improve this answer

Make sure you put multiple properties in the same line (since you only showed 1 line of code, you may have had the same problem I did).

Mine would set the default date, but didn't gray out old dates. This doesn't work:

$('#date_end').datepicker({ defaultDate: +31 })
$('#date_end').datepicker({ minDate: 1 })

This does both:

$('#date_end').datepicker({ defaultDate: +31, minDate: 1 })

1 and +1 work the same (or 0 and +0 in your case).

Me: Windows 7 x64, Rails 3.2.3, Ruby 1.9.3

share|improve this answer

Try setting startDate to the current date. For example:

$('.date-pick').datePicker({startDate:'01/01/1996'});
share|improve this answer
This looks like it is for Kevin Luck's date picker not the standard JQuery one – salonMonsters Nov 28 '11 at 20:19

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.