#1273 보완 커밋

0f2e900816 수정
hidden 된 생일 속성 input이 있어서 prevAll로 바꿈
* 종합: .parent 를 삭제
This commit is contained in:
MinSoo Kim 2015-02-17 15:13:30 +09:00
parent 0f2e900816
commit 607cc292da

View file

@ -82,7 +82,7 @@ jQuery(function($){
$.extend(option,$.datepicker.regional['{$lang_type}']); $.extend(option,$.datepicker.regional['{$lang_type}']);
$(".inputDate").datepicker(option); $(".inputDate").datepicker(option);
$(".dateRemover").click(function() { $(".dateRemover").click(function() {
$(this).prev('input').val(''); $(this).prevAll('input').val('');
return false;}); return false;});
}); });
})(jQuery); })(jQuery);