Home › Forums › JavaScript › Need help to finish mobile navigation › Reply To: Need help to finish mobile navigation
September 27, 2017 at 9:56 am
#260653
Participant
I’m on a 1920px monitor. :-)
That line was actually meant to replace the one suggested earlier…
(function() {
$('.selector').click(function() {
var spot = $(this).index('.selector');
$('.windows').removeClass('active').eq(spot).addClass('active');
if ($('.menu-show').is (':visible')) $('.menu').hide();
});
})();