Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
This snippet will support auto advancing pages in multi-page form for radio button and drop down field types. Full tutorial here: https://gravityranger.com/how-to-build-a-conversational-form-in-gravity-forms
<script>
jQuery(document).ready(function($) {
$('input[type=radio], select').on('change', function() {
$(this).closest("form").submit();
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment