bongzilla

Untitled

Oct 9th, 2021 (edited)
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. $(document).ready(function(e) {
  3.   var Webflow = Webflow || [];
  4.   Webflow.push(function() {
  5.  
  6.     $('.h-wrap_tab').on('click', '.b-tabs__arrow, .b-tabs__arrow-up', function() {
  7.       let direction = $(this).hasClass('b-tabs__arrow') ? 1 : -1;
  8.  
  9.       let tablinks = $(this).parent().find('.w-tab-menu');
  10.  
  11.       let index = tablinks.find('.w--current').index() + direction;
  12.  
  13.       index = index >= tablinks.children().length ? 0 : index;
  14.       tablinks.find('.w-tab-link').eq(index).trigger('click');
  15.     });
  16.   });
  17. });
  18. </script>  
Add Comment
Please, Sign In to add comment