1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
var isMobileView = false; var mediaQuery = window.matchMedia("(max-width:600px)"); if (mediaQuery.matches) { isMobileView = true; } $(function() { $('#mobile-nav-btn').click(function() { $('.main-section').toggleClass('nav-opened'); }); });