$(function(){ /* scroll event */ let scroll = ''; $(window).on('scroll' , function(){ scroll = $(window).scrollTop(); if(scroll > 480){ $('.lnb').addClass('fixed'); } else{ $('.lnb').removeClass('fixed'); }; }); $('.depth1').on('click',function(){ // $(this).children('ul').removeClass('on'); $(this).children('ul').toggleClass('on'); $(this).children('i').toggleClass('on'); }) $('.all-menu-btn').on('click',function(){ $(this).toggleClass('active'); $(this).next('.gnb').toggleClass('active'); }) $('.about-txt > strong').find('br').remove(); $('.about-txt > p').find('br').remove(); })