// go to top button var goToTopBtn = document.createElement('button'); goToTopBtn .textContent = 'العودة الى الأعلى '; // Create the arrow element var arrow = document.createElement('span'); arrow.innerHTML = '↑'; goToTopBtn .appendChild(arrow); goToTopBtn .classList.add('btn-top'); var footer = document.querySelector('footer'); footer.before(goToTopBtn ); // Function to scroll to the top of the page function goToTop() { document.documentElement.scrollTo({ top: 0, behavior: 'smooth' }); } // Attach event listener to the button click event goToTopBtn.addEventListener('click', goToTop);