Skip to content

Instantly share code, notes, and snippets.

@KittenCodes
Created June 13, 2021 19:59
Show Gist options
  • Save KittenCodes/a2c46ba7a720bb546ad7494dc568e151 to your computer and use it in GitHub Desktop.
Save KittenCodes/a2c46ba7a720bb546ad7494dc568e151 to your computer and use it in GitHub Desktop.
Close Modal when page scrolls
jQuery(document).ready(function() {
jQuery('a[href^="#"]').click(function() {
// smooth scroll
jQuery('html, body').animate({
scrollTop: $($.attr(this, 'href')).offset().top
}, 500);
// close modal
setTimeout(function (){
oxyCloseModal();
}, 500);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment