Hello @rosco12345
Yes, that’s possible, however, the code will depend on the form structure. Could you please provide the link to the page containing the form to check its structure?
Best regards.
Hello @rosco12345
Thank you very much. Please insert an “HTML Content” field at the beginning of your form and enter the following piece of code as its content:
<script>
fbuilderjQuery(document).on('change', ':input[name*="fieldname"]', function(){
let f = fbuilderjQuery(this).closest('.fields');
if ( ! f.hasClass('cff-calculated-field') ) {
let n = f.next('.fields:visible');
if (n.length) n[0].scrollIntoView({behavior:'smooth'});
}
});
</script>
Best regards.