$(function(){ var flg = true; $(".ph_icon").click(function(){ $(".gov_header_main").toggle(); $(".hidenav").toggle(); if(flg){ $('body').css("overflow","hidden"); flg = false;}else{ $('body').css("overflow","visible"); flg = true; } }) $('.hidenav').click(function(e) { $(".gov_header_main").toggle(); $(".hidenav").toggle(); }); $(".toopen").click(function(){ var hasopen = $(this).hasclass("isopen"); if(hasopen){ $(this).next().hide(); $(this).removeclass("isopen"); }else{ $(this).next().show(); $(this).addclass("isopen"); } }) })