I have question regarding create <section>
as page.
I want to create a HTML with a lot of <section>
, below is my concepts.
<html>
<head>
</head>
<body>
<section id="section1"></section>
<section id="section2"></section>
<section id="section3"></section>
</body>
</html>
I want restrict user only able to scroll until the end of the section1 only.
Until user click on next button just go to section2.
Is there any javascript plugin or css able to do this?
Let me know if this question is duplicated.
Thank you.
Add on: I found a links can describe my question. The designer write all the code inside one HTML page. But we only allow to scroll the until end of the section without going to other section.