Вы имеете в виду это?
Вы можете нажать на кнопку или ссылку
$(function() {
$(">li>a, >li>button","#mobile-menu-mobile") // link or button
.on("click touchstart",function(e) { // click or touch on mobile
e.preventDefault(); // cancel link
$("[aria-expanded]").attr("aria-expanded",false); // toggle whatever is true
$("#mobile-menu-mobile>li>ul").slideUp("fast"); // close all
$(this).parent().find("[aria-expanded]").attr("aria-expanded",true); // set the aria-expanded
$(this).nextAll("ul").slideDown("slow"); // open the UL
});
$("#mobile-menu-mobile>li>button[aria-expanded=true]").prev().click(); // initialise
});
#mobile-menu-mobile>li>ul { display:none }}
[aria-expanded=true] { background-color:green; color:yellow }
[aria-expanded=false] { background-color:red; color:white }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul id="mobile-menu-mobile">
<li>
<!-- mobile menu 1 -->
<a href=#>menu1</a>
<button aria-expanded="true"></button>
<ul>...sub-menu...</ul>
</li>
<li>
<!-- mobile menu 2 -->
<a href=#>menu1</a>
<button aria-expanded="false"></button>
<ul>...sub-menu...</ul>
</li>
<li>
<!-- mobile menu 3 -->
<a href=#>menu1</a>
<button aria-expanded="false"></button>
<ul>...sub-menu...</ul>
</li>
<li>
<!-- mobile menu 4 -->
<a href=#>menu1</a>
<button aria-expanded="false"></button>
<ul>...sub-menu...</ul>
</li>
</ul>