/* ----------------------------------------- MBC CUSTOM JS - Footer Include ----------------------------------------- */ // create footer element const mbcFooter = document.createElement('footer'); mbcFooter.id = 'footer'; mbcFooter.className = 'global-footer m-t-lg'; // footer content const mbcFooterContent = `
`; insertFooterInBody(); function insertFooterInBody() { const mbcBody = document.body; // insert the code mbcFooter.innerHTML = mbcFooterContent; mbcBody.appendChild(mbcFooter); // set the current year for copyright document.getElementById('thisyear').appendChild(document.createTextNode(new Date().getFullYear())) }