$(".cf-section-block").click(function() {
$('html,body').animate({ scrollTop:$(this).parent().next().offset().top}, 'slow');});
I have this function to scroll to the top of the section when it is opened based on a radio button and field rule. This works in preview mode, but does not work when the process is actually started by a user.
Can anyone help with this?