Skip to content

Instantly share code, notes, and snippets.

@chrisegg
Last active December 25, 2020 02:16
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save chrisegg/8ea3c0f0573eef489cb4cfcb48e56751 to your computer and use it in GitHub Desktop.
This snippet will allow you to use a radio button field to submit the form without using the submit button.
<script>
 jQuery(document).ready(function($) {
 $('input[type=radio]').on('change', function() {
 $(this).closest("form").submit();
 });
});
</script>
@chrisegg
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment