Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <script>
- // Pop-Up Close And Scroll V1:
- // Pop-up button and closer X *BOTH* close and scroll to a section
- // Handle button clicks in modal
- jQuery('.modal-body [data-component="button"] a').on('click', function (ev) {
- ev.preventDefault();
- jQuery('.modal button.closer.close').click();
- });
- // Handle modal closer clicks
- jQuery('.modal button.closer.close').on('click', function (ev) {
- // Supports multiple sections; will scroll to the visible one
- jQuery('#_8u3ip7yc1:visible, #_luiyxh20t:visible').each(function () { this.scrollIntoView(); });
- });
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement