//CORE JS FUNCTIONALITY //Contains only the most essential functions for the theme. No jQuery. //MOBILE MENU TOGGLE var menu_element = document.getElementById('menu-mobile-open'); var menu_exists = !!menu_element; if(menu_exists){ menu_element.addEventListener('click', function(){ document.body.classList.add('menu-mobile-active'); }); document.getElementById('menu-mobile-close').addEventListener('click', function(){ document.body.classList.remove('menu-mobile-active'); }); } // Add link to header warning window.onload = function(){ var body = document.getElementsByTagName("BODY")[0]; var banner = document.createElement('div'); banner.classList.add('banner'); banner.innerHTML = "This is an archive of the PSCSTA site taken 10/1/2019. For current information, please visit our CSTA Chapter Website" body.insertBefore(banner, body.firstChild); }