Skip to content

Instantly share code, notes, and snippets.

@joseconti
Created October 22, 2019 14:31
Show Gist options
  • Save joseconti/9e6cf229818321aaee004cf320efd01b to your computer and use it in GitHub Desktop.
Save joseconti/9e6cf229818321aaee004cf320efd01b to your computer and use it in GitHub Desktop.
Cerrar menú móvil en The7 de forma automática cuando en una landing con anclas.
jQuery(document).ready(function($) {
$('.dt-mobile-header a').on('click', function(){
if ( $(this).data('toggle') !== 'dropdown' ) {
$('.dt-close-mobile-menu-icon').click();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment