datepicker 달력 질문
본문
<script>
$('body').on('click', 'input.datepicker', function(event) {
$(this).datepicker({
showOn: 'focus',
dateFormat: "yy-mm-dd",
yearRange: "2014:+5",
changeMonth: true,
changeYear: true
}).focus();
});
</script>
시작일과 종료일이 있는데 시작일을 4월로 선택하면 종료일도 4월부터 선택할 수 있게할 순 없을까요?
시작일 이전날짜를 선택하지 못하게하는 소스는 많은데 같은달로 선택되게하는 소스는 아무리 찾아도 보이지가 않네요 ㅠㅠ
!-->
답변을 작성하시기 전에 로그인 해주세요.