jQuery ajaxForm plugin (form submit)

JAVASCRIPT 2013. 6. 17. 17:18 Posted by Dayis

Plugin : http://jquery.malsup.com/form/#download

사용 예 : http://mytory.net/archives/223


$(function(){ $('#FormID').ajaxSubmit(); });


$(function(){ $('#FormID').ajaxSubmit({ success: function(msg){ alert(msg); } }); });


※ ajaxForm과 ajaxSubmit

ajaxForm : 실제 submit이 일어나기 전의 이벤트 리스너..??

ajaxSubmit : 실제 submit

'JAVASCRIPT' 카테고리의 다른 글

[jQuery] window와 document 비교  (0) 2013.07.09
날씨 API  (0) 2013.07.03
jQuery 모바일 터치슬라이드  (0) 2013.05.29
jQuery 특정영역(div)만 출력  (0) 2013.05.13
jQuery 엔터키 이벤트  (0) 2013.05.13