Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Need help to finish mobile navigation Reply To: Need help to finish mobile navigation

#260617
Shikkediel
Participant

Okay, so it’s just on small screens…

Just add another hide then?

(function() {

  $('.selector').click(function() {

    var spot = $(this).index('.selector');

    $('.windows').removeClass('active').eq(spot).addClass('active');
    $('.menu').hide();
  });
})();

That also messes with the large view though.