Sunday, May 19, 2024
 Popular · Latest · Hot · Upcoming
49
rated 0 times [  51] [ 2]  / answers: 1 / hits: 25509  / 11 Years ago, thu, august 8, 2013, 12:00:00

I have a little problem with datepicker, I'd want that a user with arrows can only select a date between the first day of the first month and the last day of the month, but it would be dynamic because if we are in 2014 I have to see only year of 2014.



I have tried in this mode but with arrows I can go to 2012 or 2014 for example:



$('#check-in').datepicker({ dateFormat: 'dd-mm', changeYear: false, yearRange: -0:+0, stepYears: 0  });

More From » jquery

 Answers
15

Set minDate and maxDate like



$(function() {
var year = (new Date).getFullYear();
$( #datepicker ).datepicker({
minDate: new Date(year, 0, 1),
maxDate: new Date(year, 11, 31)
});
});


Link


[#76453] Wednesday, August 7, 2013, 11 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
braidenv

Total Points: 80
Total Questions: 104
Total Answers: 91

Location: Peru
Member since Fri, Oct 14, 2022
2 Years ago
;