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
Embed
What would you like to do?
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