1

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!

1 Answers1

2

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/

Kivylius
  • 6,357
  • 11
  • 44
  • 71
  • @DavideGadaldi you don't need to use the `scrollTo` plugin for something like this. See [FIDDLE](http://jsfiddle.net/bplumb/ALryC/) – Blake Plumb May 13 '13 at 18:15