Question

function NavMenu() {
    $(function() {                       
      $(".toggle-topbar").click(function() {
        $(".top-bar").addClass("expanded"); 
      });
    });
}

This function allows a Menu Button to expand a drop down for when running on a mobile/tablet device, ive so far got it this far, which expands the drop down, however how do i go about removing the class when i then click the option again?

Many Thanks

Était-ce utile?

La solution

You can use toggleClass()

$(".top-bar").toggleClass("expanded"); 
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top