Hi!
You’re probably best of writing some Javascript which listens for the change you want and then manually triggers a click for the “next” button. If you’re using jQuery you can trigger a next button click with: $('.af-next-button').click().
Hey,
Thanks for your reply– unfortunately, I had tried this but it just seemed to click the button but not move on to the next page of the form 🙁
If I add this to forms.js it does work howver…
form.$next_button.click(function(e) {
e.preventDefault();
self.nextPage( form );
});
$('input[type="radio"]').click(function(e) {
e.preventDefault();
self.nextPage( form );
});
Switching out the top block for the second block does work however… is there a way to safely edit this?