Skip to main content

Scroll to a Section after Ajax Filter

Introduction

Follow this step to scroll to a section after filtering.

Step 1: Add CSS

To activate this functionality add a custom class name to a section or another element. For example, I could use the name element for my class. After doing this, go to Divi > Theme Options > Integration and add this code in the body section. You can fine-tune the position by changing the number 60.

<script>
jQuery( document ).ajaxComplete(function( event, request, settings ) {
jQuery('html, body').animate({
scrollTop: (jQuery('.element').offset().top - 60)
}, 2000);
});
</script>