jQuery(function($){ //var $button = $('.gnb_left>button'); //$button.on('click', 'ul', function(event){ //var $this = $('.gnb_left>ul'); //$this.slideToggle(200) //}); $(".gnb_left>button").click(function(){ if ($(this).next().css('display') == 'block') { $(this).css('background', 'url(/shoestring/2015_early/images/menu_icon.png)').css('height', '14px'); } else { $(this).css('background', 'url(/shoestring/2015_early/images/menu_icon_ex.png)').css('height', '20px'); } $(this).next().slideToggle(100); }); $(".icon_search_white").click(function(){ $(this).next().slideToggle(100) }); });