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

Is it possible to disable future date from today?

Let say today is 23/10/2010, so 24/10/2010 onwards are disabled.

Sorry I am very new in jQuery and JavaScript.

share|improve this question

3 Answers

up vote 25 down vote accepted

Yes, indeed. The datepicker has the maxdate property that you can set when you initialize it. I've used it on http://blogvani.com frontpage where I set the maxdate to the current date.

Here's the codez

$("#datepicker").datepicker({ maxDate: new Date, minDate: new Date(2007, 6, 12) });
share|improve this answer
gupta ji this work perfectly. thank you – cicakman Oct 23 '10 at 6:23
@cicakman Welcome. Call me Cyril or CG. – Cyril Gupta Oct 23 '10 at 6:26
$(function() { $("#datepicker").datepicker({  maxDate: '0'}); });
share|improve this answer
1  
We can use with out single quotes also for ex: maxDate: 0 – RJK Apr 29 at 5:52
@RJK thanks for the info – Paniyar Apr 29 at 6:23
You are welcome :) – RJK Apr 29 at 6:38

Code for Future Date only with disable today's date.

 var d = new Date();
         $("#delivdate").datepicker({
         showOn: "button",
         buttonImage: base_url+"images/cal.png",
         minDate:new Date(d.setDate(d.getDate() + 1)),
         buttonImageOnly: true
        });
         $('.ui-datepicker-trigger').attr('title',''); 
share|improve this answer
2  
Welcome to Stack Overflow! please avoid putting words in Caps and bold unless they are very important. – Unni Kris Nov 9 '12 at 7:15

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.