Skip to content

Instantly share code, notes, and snippets.

@BJIAST
Created January 11, 2017 12:40
Show Gist options
  • Save BJIAST/2f2410cefd396c1e3f2243401fa41b7f to your computer and use it in GitHub Desktop.
Save BJIAST/2f2410cefd396c1e3f2243401fa41b7f to your computer and use it in GitHub Desktop.
$(".sub-menu-mobile > a")['on']("click", function(){
if ($(this).parent().children(".sub-menu-block").css("display") == "none"){
$(".sub-menu-block").css("display","none");
$(this).parent().children(".sub-menu-block").css({"display" : "block"});
return false;
}
})
@Yurii-Chaban
Copy link

Good job, man

@BJIAST
Copy link
Author

BJIAST commented Jan 11, 2017

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment