Advertisement
briank

KPB Pop-Up Close & Scroll V1

Apr 28th, 2021 (edited)
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.56 KB | None | 0 0
  1. <script>
  2. // Pop-Up Close And Scroll V1:
  3. // Pop-up button and closer X *BOTH* close and scroll to a section
  4. // Handle button clicks in modal
  5. jQuery('.modal-body [data-component="button"] a').on('click', function (ev) {
  6. ev.preventDefault();
  7. jQuery('.modal button.closer.close').click();
  8. });
  9. // Handle modal closer clicks
  10. jQuery('.modal button.closer.close').on('click', function (ev) {
  11. // Supports multiple sections; will scroll to the visible one
  12. jQuery('#_8u3ip7yc1:visible, #_luiyxh20t:visible').each(function () { this.scrollIntoView(); });
  13. });
  14. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement