Skip to content

Instantly share code, notes, and snippets.

@BahtaDima
Created December 30, 2016 11:13
Show Gist options
  • Save BahtaDima/18fd767f3133ad05664a44f2ba327168 to your computer and use it in GitHub Desktop.
Save BahtaDima/18fd767f3133ad05664a44f2ba327168 to your computer and use it in GitHub Desktop.
$('.btn_mnu').click(function(){
if($('.menu').is(':visible')){
$('.menu').fadeOut(500);
} else {
$('.menu').fadeIn(600);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment