I\'m using jQuery UI 1.8 and I would like to hide the year from the user in both the popup and the textbox. Essentially instead of picking the day, month and year I want the
VIKSME Hide year http://jsfiddle.net/tocv/e5cvA/
CSS
.ui-datepicker-year { display:none; }
HTML
JavaScript
$(function() { $( "#datepicker" ).datepicker({ changeMonth: true, changeYear: false }); });