I have a website with sections .. I'm trying to make the scroll jump to the next section and so on .. Thank you in advance!
I have a website with sections .. I'm trying to make the scroll jump to the next section and so on .. Thank you in advance!
There are lots of plugins that do this for you, I recommend using fullPage.js . To use, just use the following code:
<div id="fullpage">
<div class="section">Some section</div>
<div class="section">Some section</div>
<div class="section">Some section</div>
<div class="section">Some section</div>
</div>
In your javascript just use:
$(document).ready(function() {
$('#fullpage').fullpage();
});