Reputation: 23
how can i hide scrollbars in a website, disabling scroll by mouse but being able to reach hidden areas of the page with the jquery scrollTo plugin function? (click on a button and page scroll to the target element)?
thanks!
Upvotes: 1
Views: 189
Reputation: 6567
To disable scroll bars a simple css:
html, body {
overflow:hidden;
}
To scrollTo please look at this example:
http://www.adriantomic.se/development/scroll-to-the-top-with-jquery/
Upvotes: 2