jquery 작업 후 URL 가져오기 jquery 기능으로 post target action에 접속하려고 합니다. 예: 이 경우 "action" 부분 - "/page/users"에 접속하고 싶습니다. $('#signup').live("submit", function(event) { // get this submitted action } 아주 간단한 걸 놓치고 있는 것 같아요.돔에 있는 가치는 보이는데 jquery에 어디에 저장되어 있는지 모르겠습니다. 감사합니다!$('#signup').on("submit", function(event) { $form = $(this); //wrap this in jQuery alert('the action is: ' + $form.attr('action')); }); 이..