javascript - disable scrollbar and mousewheel but not scrollTo -


how can hide scrollbars in website, disabling scroll mouse being able reach hidden areas of page jquery scrollto plugin function? (click on button , page scroll target element)?

thanks!

to disable scroll bars simple css:

html, body {     overflow:hidden; } 

to scrollto please @ example:

http://www.adriantomic.se/development/scroll-to-the-top-with-jquery/


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -