This question already has an answer here:
I'm creating a OnePage for my Portfolio.
Each site fills 100% of the Screen. And I want that when I use the Mouse-wheel to scroll, that one Scroll, scrolls down 100%, so that I come directly to the next site and not somewhere between the pages.
Can someone tell me how I can solve this problem with JS/jQuery?
MouseWheel is not a default event within jQuery, so to start with you would need something like this and either write your own function to switch to the next page or use another plugin like scrollTo
Not quite sure whether or not that is best practice though..
EDIT
Here is a fiddle on the base of Stano's fiddle.
and another edit: the fiddle only works in FF as Chrome and IE refuse to load the scripts because of the wrong MIME-Type..
You can also use the following onscroll handler, it's based on this answer:
Here is jsfiddle and its separated test page.