Skip to content

Instantly share code, notes, and snippets.

@cdwharton
Created July 9, 2020 15:48
Show Gist options
  • Select an option

  • Save cdwharton/3dbf5834202f01e507df3ebdb065c9ee to your computer and use it in GitHub Desktop.

Select an option

Save cdwharton/3dbf5834202f01e507df3ebdb065c9ee to your computer and use it in GitHub Desktop.
Turn off menu on nav click
<script>
jQuery( window ).load(function() {
jQuery('.fl-responsive-nav-enabled .navbar-nav .nav-link').on( "click", function() {
jQuery('.fl-page').removeClass('fl-nav-offcanvas-active');
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment