Advertisement
kejvoun

kodikprefloriho1

Jun 25th, 2024
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.35 KB | None | 0 0
  1. $('#semPojdeIDButtonu').on('click', function() {
  2.     // Simulate the click on the second tab
  3.     $('a[href="#product-details"]').click();
  4.  
  5.     // Scroll to the .tab-pane#product-details element
  6.     $('html, body').animate({
  7.         scrollTop: $('.tab-pane#product-details').offset().top
  8.     }, 1000); // Adjust the duration (1000 ms) as needed
  9. });
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement