-1👍
First your collapse menus to display none.
Create a class, for example:
.display-item {
display: block;
}
as for the on click try this Jquery code:
$("put the drop down class here").click(function(){
$("put your tage here").toggleClass("display-item");
});
Source:stackexchange.com