Skip to content

Instantly share code, notes, and snippets.

@joseconti
Last active October 22, 2019 14:43
Show Gist options
  • Save joseconti/0b2f8d342844960dc0071ba5946be1f8 to your computer and use it in GitHub Desktop.
Save joseconti/0b2f8d342844960dc0071ba5946be1f8 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($) {
$('#mobile-menu a').on('click', function(){
if ( $(this).data('toggle') !== 'dropdown' ) {
$('.dt-close-mobile-menu-icon span').click();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment