$(document).ready(function () { /*header*/ $('.header').mouseenter(function () { $('.header').addClass('down'); }).mouseleave(function () { $('.header').removeClass('down'); }) $('.gnb-bg').css('width', $('body').innerWidth()); $(window).resize(function () { $('.gnb-bg').css('width', $('body').innerWidth()); }); });