0

Can anyone help me finding me a calender without year.I have found one.But problem is after choosing date and month, in input box year is showing.I want only day and month in input box.

Konstantin
  • 3,294
  • 21
  • 23

1 Answers1

0

If you're using Jquery Datepicker, you will have to do it like this:

html:

<input type='text' id='datepicker'>

javascript (JQuery):

$('#datepicker').datepicker( { changeYear: false, dateFormat: 'dd-mm' } );

JsFiddle (see needed external resources)

M Zeinstra
  • 1,931
  • 4
  • 17
  • 46