Davide Gadaldi
Davide Gadaldi

Reputation: 23

disable scrollbar and mousewheel but not scrollTo

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

Answers (1)

Kivylius
Kivylius

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

Related Questions