Advertisement
briank

KPB Pop-Up Close & Scroll V2

May 23rd, 2021 (edited)
1,172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script>
  2. // Pop-Up Close And Scroll V2:
  3. // Pop-up button closes and scrolls to a section
  4. // Closer X closes but does NOT scroll
  5. jQuery('.modal-body [data-component="button"] a').on('click', function (ev) {
  6. ev.preventDefault();
  7. // Supports multiple sections; will scroll to the visible one
  8. jQuery('#_8u3ip7yc1:visible, #_luiyxh20t:visible').each(function () { this.scrollIntoView(); });
  9. jQuery('.modal button.closer.close').click();
  10. });
  11. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement