<script type='text/javascript'>
// <![CDATA[
// JQuery validate 에러 메시지를 alert으로 표출(해당 스크립트 제거하면 input text 옆에 표시
$.validator.setDefaults({
	onkeyup:false,
	onclick:false,
	onfocusout:false,
	showErrors:function(errorMap, errorList) {
		if(this.numberOfInvalids()){ // show error
			alert(errorList[0].message);
			$(errorList[0].element).focus();
		}
	}
});
//]]>
</script>
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,