[js] html에 class 추가/제거 하는 토글 버튼
<script> function sidebar_toggle() { var root = document.documentElement; if (~root.className.indexOf(' selector')) { root.className = root.className.replace(' selector', ''); } els...
<script> function sidebar_toggle() { var root = document.documentElement; if (~root.className.indexOf(' selector')) { root.className = root.className.replace(' selector', ''); } els...
if ( window.location.pathname == '/' ) { var root = document.documentElement; root.className += ' index'; } wondow.location.pathname에 지정된 경로의 URL로 접속 할 경우 index라는 class를 html에...