//기본 설정 const baseUrl = window.location.protocol + '//' + window.location.hostname; //태그 재정의 document.addEventListener("DOMContentLoaded", function () { var body = document.querySelector('body'); var head = document.querySelector('head'); var footer = document.querySelector('footer'); var styleTags = body.querySelectorAll('style'); var scriptTags = body.querySelectorAll('script'); if (styleTags.length > 0) { for (var i = 0; i < styleTags.length; i++) { head.append(styleTags[i]) } } if (scriptTags.length > 0) { for (var i = 0; i < scriptTags.length; i++) { footer.append(scriptTags[i]) } } }); $(document).ready(function () { //페이지 아이디 설정 var current = location.pathname; var current_array = current.split('/'); var pageId = ''; var capital = 0; current_array.forEach((item, i) => { if (item != '' && item != 'admin') { if (capital > 0) { item = capitalize(item); } pageId += item; capital++ } }); if (pageId == '') { pageId = 'index'; } $('main').attr('id', pageId); }); // ie css 변수적용 window.MSInputMethodContext && document.documentMode && document.write('