/* Add custom Js styles below */ document.addEventListener("DOMContentLoaded", function() { // بنجيب العنصر اللي بعده هنضيف الزر const target = document.body; if (target) { const whatsappButton = `

`; // نضيف الزر بعد العنصر target.insertAdjacentHTML("afterend", whatsappButton); } }); /********************/ document.addEventListener("DOMContentLoaded", () => { const moveSocial = () => { const social = document.querySelector(".s-social-list"); const mobile = document.querySelector(".s-contacts-list #contact-slot:nth-child(2)"); if (social && mobile && social.previousElementSibling !== mobile) { mobile.after(social); } }; moveSocial(); setInterval(moveSocial, 500); });