How to disable auto scrolling when clicked on accordion?
-
How to disable auto scrolling when clicked on accordion?
Hello,
Could you kindly advise which accordion you mean?
Do you mean the product page?
Best Regards
When I click on any accordion tab my scroll is changing, how to disable it?
Hello,
Please add this code to the Theme Settings > Custom JS > On document ready:
(function($) {
$(document).on('click', '.wd-accordion > .wd-accordion-item > .wd-accordion-title', function(){
setTimeout(function() {
$('html, body').stop();
}, 310);
})
})(jQuery);
Best Regards