// JavaScript Document function fncCloseMenu() { $("#Han_box_menu").empty(); } function fncMenuHandler() { $('#Han_box_menu .oneDepth').each(function(id){ $(this).click(function(e){ e.preventDefault(); //console.log($(this).hasClass('active')); if($(this).hasClass('active')){ $(this) .removeClass('active') .find('+.menu_sub_list').slideUp(); }else{ $('#Han_box_menu .oneDepth').removeClass('active'); $('.menu_sub_list').slideUp(); $(this) .addClass('active') .find('+.menu_sub_list').slideDown(); } }); }); } function fncSubCategoryOpenHandler() { $('.category_current').click(function(){ if($(this).hasClass('open')){ $(this).removeClass('open') .next('.category_list_wrap').slideUp(); $(this).attr('aria-expanded', 'false'); }else{ $(this).addClass('open') .next('.category_list_wrap').slideDown(); $(this).attr('aria-expanded', 'true'); } }); } // Document Load $(document).ready(function(){ $('header .han_button_menu').click(function(){ fncLoadMenu(); }); fncSubCategoryOpenHandler(); });