servermgrv2/public/js/admin/left_menu.js
2023-07-17 21:09:49 +09:00

14 lines
407 B
JavaScript

function sideMenuToggle (){
var accordion = $(".accordion")[0];
// console.log(accordion.clientWidth);
if (accordion.clientWidth == 0){
accordion.style.display = "block";
$("#left_menu").css({ "width": '250px' })
$("#menu_button").html("메뉴닫기");
}
else {
accordion.style.display = "none";
$("#left_menu").css({"width":'28px'})
$("#menu_button").html("메뉴열기");
}
}//toggleMenu