$("#inword").keypress(function(e) {
	if(e.which == 13){
		$("#myform").submit();
		return false;
	}
});

'javascript, jquery' 카테고리의 다른 글

href에서 파라메터값 분리하기  (0) 2015.09.17
url 주소를 클립보드로 복사하기  (0) 2015.09.16
ajax 파일 전송  (0) 2015.08.31
input 한글만, 영어만, 숫자만  (0) 2015.07.23
a 앵커 이동 부드럽게 이동  (0) 2015.07.23
블로그 이미지

디츠

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

,