I want to highlight the current menu you have click. I\'m using CSS, but it is now working.
here is my css code:
#sub-header ul li:hover{ background-
Another variation with a simple 2-line listener
$( ".menu_button" ).click(function() {
$( ".menu_button" ).removeClass('menu_button_highlight');
$(this).addClass('menu_button_highlight');
});
=====
Admin
User Manager
Invite Codes
====
.menu_button {
padding: 0 5px;
}
.menu_button_highlight {
background: #ffe94c;
}