jquery datepicker 다음달 일부까지 보이고 선택하게 만드는 법
$("#DATE").datepicker();
$.datepicker.setDefaults({
defaultDate: "<%=Year(Now()) %>-<%=Month(Now()) %>-<%=Day(Now()) %>",
dateFormat: 'yy-mm-dd',
showOtherMonths: true,
selectOtherMonths: true,
prevText: '이전 달',
nextText: '다음 달',
monthNames: ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'],
monthNamesShort: ['1월', '2월', '3월', '4월', '5월', '6월', '7월', '8월', '9월', '10월', '11월', '12월'],
dayNames: ['일', '월', '화', '수', '목', '금', '토'],
dayNamesShort: ['일', '월', '화', '수', '목', '금', '토'],
dayNamesMin: ['일', '월', '화', '수', '목', '금', '토'],
showMonthAfterYear: true,
yearSuffix: '년'
});