Skip to content

Instantly share code, notes, and snippets.

@aviogreen
Created August 12, 2015 12:23
Show Gist options
  • Save aviogreen/d6a1c4e0350541479a5d to your computer and use it in GitHub Desktop.
Save aviogreen/d6a1c4e0350541479a5d to your computer and use it in GitHub Desktop.
$('.sm-menu').click(function(event) {
var parent = $(this).parent();
parent = parent[0];
$('.sp-mrtop').each(function(index, el) {
if( this == parent){
$(this).toggleClass('open');
} else {
$(this).removeClass('open');
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment