Recent | Popular
#js #scroll #css #setup
<style> html, body { overflow-y: hidden; } </style> <script> $(function(){ setTimeout(function(){ $('html') .css({ 'overflow-y': 'scroll' }) window.scrollTo(0, 0); }, 3000); }); </script>
Mon Apr 11 2022 23:48:53 GMT+0000 (Coordinated Universal Time)