$(document).ready(function () { //gnb hover // var gnbHeader = $(".submenuul"); // $("#gnb > li").hover( // function () { // var activeeNum = $(this).index(); // // $(this).stop(true, true).animate({ // // height: 400 // // }, 200); // // $(this).children('ul').addClass("active").stop(true, true).animate({ // // height: 400 // // }, 200); // }, // function () { // gnbHeader.stop(true, true).animate({ // height: 0 // }, 0, function () { // $(this).removeClass("active"); // }); // } // ); // $("#gnb > li").hover( // function () { // $(this).addClass("hover"); // }, // function () { // $(this).removeClass("hover"); // } // ); // $(".submenu").hover(function(){ // var submenuul = ('.submenuul') // $(this).children('ul').css('height','450px'); // }); //Main Menu $('.main-nav ul li:has(ul)').addClass('submenu'); $('.main-nav ul li:has(ul)').append(""); $('.main-nav ul i').click(function () { $(this).parent('li').toggleClass('open'); $(this).parent('li').children('ul').slideToggle(); }) //Mobile Menu $('.mob-btn').click(function () { $('html').addClass('show'); }); $('.overlay').click(function () { $('html').removeClass('show'); }) });