/* Add custom Js code beelow */ /*اضافة شعار مركز الاعمال السعودي في الفوتر على الموبايل*/ function addDivInFooter() { width = window.innerWidth; if (width <= 800) { let t = document.createElement("div"); t.innerHTML = ""; t.classList.add("footerLogo"); let b = document.body; let f = document.getElementsByTagName("footer")[0]; f.appendChild(t); } } addDivInFooter();