I want to make page scrolling for specific div, see the following example:
I want to make so that when you click on 3 from the first page, it scrolls to sec3 directly without scrolling through sec2, so it appears as one flip.
How can I achieve something like this?
Assuming you have a viewport wrapped around the sections, the easiest thing to do then would be to hide section 2 before you start your scroll.
EDIT: Updated the Fiddle to demonstrate: http://jsfiddle.net/4GHq2/22/ It’s not perfect yet, but the base is there.