Answers for "automatically function run js function on load after some time"

0

automatically function run js function on load after some time

<script>
      $(document).ready(function(){
        setTimeout(function(){
            scrollMostTop()
        }, 3000);
      });

          function scrollMostTop(){
              window.scrollTo(0,0);
        $('.class').click();
    }
  </script>
Posted by: Guest on September-17-2021

Code answers related to "automatically function run js function on load after some time"

Code answers related to "Javascript"

Browse Popular Code Answers by Language