I want the user to specify their birthday or anniversary date (without year) in a form. For this, I want to use jquery datepicker but it should not show any year option at all. How to do it?

I tried modifying the code in this so question by making changeDay: true and changeYear: false but could not get it to work.

link|improve this question
feedback

3 Answers

up vote 1 down vote accepted

set the css to hide the year and the dateFormat as K6t said

.ui-datepicker-year{
    display:none;
}
link|improve this answer
feedback

change dateFormat as

dateFormat: 'dd MM',

in datePicker.js file

link|improve this answer
feedback

You could do:

$('#date').datepicker( {
        changeMonth: true,
        changeYear: true,
        showButtonPanel: true,
        dateFormat: 'dd MM'
    });

fiddle http://jsfiddle.net/u8GnD/1/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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