JQuery – select 변경 form sumbit

select box 값을 변경하면 자동으로 form submit() 해 버리고 싶은데, 어떻게 하나요? 엄청 간단하게 알려주세요. 🙂 How to Submit Form on Select Change I have the following form. I’d like it to be submitted automatically via jQuery when the user makes a selection, without needing to press the submit button. How do I do this? <form action=”″ me… Stack OverflowRick Helston 정답은 아래 코드를 참고하세요 $(document).ready(function() { $(‘#선택박스아이디’).on(‘change’, function() { document.forms[myFormName].submit(); });});// 혹은$(document).ready(function() { $(‘#선택박스아이디’).change(function() { var parentForm = $(this).closest(“form”);…