Last active
August 12, 2021 15:26
-
-
Save jadealombro/321149f3202188c8a9e9fad74e331be6 to your computer and use it in GitHub Desktop.
This script will only work specifically for form 41 with one multiple choice (image choices) field on each page.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'wpforms_wp_footer_end', function() { ?> | |
<script type="text/javascript"> | |
;(function($) { | |
$( "#wpforms-form-41 .wpforms-field-radio li" ).on( "click", function() { | |
$(this).closest('.wpforms-page').find('.wpforms-page-next').click(); | |
}); | |
})(jQuery); | |
</script> | |
<?php } ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment