Home › Forums › WoodMart support forum › link in shortdescrition to additional_information › Reply To: link in shortdescrition to additional_information
April 16, 2019 at 2:03 pm
#119136
Artem Temos
Keymaster
Try to replace with the following code
jQuery('.openTabBtn').on('click', function( e ){
e.preventDefault();
jQuery('.additional_information_tab > a').click();
jQuery([document.documentElement, document.body]).animate({
scrollTop: jQuery(".additional_information_tab").offset().top
}, 500);
});