Advertisement
efrdimitrov

up-arrow

Jun 8th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function scrollFunction() {
  2. document.getElementById("myBtn").style.display = "none";
  3. if (document.body.scrollTop > 1000 || document.documentElement.scrollTop > 1000) {
  4. document.getElementById("myBtn").style.display = "block";
  5. }
  6. }
  7.  
  8. // When the user clicks on the button, scroll to the top of the document
  9. function topFunction() {
  10. document.body.scrollTop = 0;
  11. document.documentElement.scrollTop = 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement