Home › Forums › WoodMart support forum › Help with positioning › Reply To: Help with positioning
July 14, 2019 at 11:51 pm
#132664
newK9
Participant
Thank you all sorted now.
Could you please advice me in how to work this, I’m trying to make a link in short description to open or navigate down to the Shipping & Delivery tab also known as the ‘woodmart additional tab’. I’ve tried with the code below but having some trouble getting it to work.
jQuery('.openTabBtn').on('click', function( e ){
e.preventDefault();
jQuery('.woodmart_additional_tab > a').click();
jQuery([document.documentElement, document.body]).animate({
scrollTop: jQuery(".woodmart_additional_tab").offset().top
}, 500);
});
Then adding the link element
<a href="#" class="openTabBtn">Shipping & Delivery</a>