Home / Admin / How to Move to the Next Page Automatically
Duplicate Snippet

Embed Snippet on Your Site

How to Move to the Next Page Automatically

<10
Code Preview
js
/**
 * Navigate to the next page automatically
 *
 * @link https://wpforms.com/developers/how-to-move-to-the-next-page-automatically/
 */
  
function wpf_dev_automatic_next_page( ) {
?>
  
<script type="text/javascript">
    jQuery(function() {
        jQuery( "form#wpforms-form-1000 ul.wpforms-image-choices input" ).click(function() {
  
                jQuery(this).closest( '.wpforms-page' ).find( '.wpforms-page-next' ).click();
 
        });
  
    });
</script>
  
<?php
}
   
add_action( 'wpforms_wp_footer_end', 'wpf_dev_automatic_next_page', 30 );

Comments

Add a Comment