I'm having problems with a library called full page that makes that when the page is loaded the scroll is automatically downloaded to the contact section that is in the footer, they could help me with the error, I would be grateful with the help I will leave code
<li><a class="nav-link" href="">{{ __('inicio') }}</a></li>
<li><a class="nav-link" href="">{{ __('eventos') }}</a></li>
<li><a class="nav-link" href="">{{ __('Promociones') }}</a></li>
<li data-menuanchor="firstPage"><a class="nav-link" href="#firstPage">{{ __('Contactanos') }}</a></li>
<li><a class="nav-link" href="{{ route('login') }}">{{ __('Login') }}</a></li>
<li><a class="nav-link" href="{{ route('register') }}">{{ __('Register') }}</a></li>
<div class="container" id="fullpage">
<div class="row">
<div class="col-md-6">
</div>
<div class="col-md-6 section">
<div class="card">
<div class="card-body">
<h5 class="card-title">Contactanos</h5>
<form id="form">
<div class="form-group">
<label for="exampleInputEmail1">Nombres</label>
<input type="text" class="form-control" id="exampleInputEmail1" placeholder="Nombres">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Apellidos</label>
<input type="text" class="form-control" id="exampleInputPassword1" placeholder="Apellidos">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Telefono</label>
<input type="text" class="form-control" id="exampleInputPassword1" placeholder="Telefono">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Correo Electronico</label>
<input type="email" class="form-control" id="exampleInputPassword1" placeholder="[email protected]">
</div>
<button type="button" class="btn" style="background-color: orange">Enviar</button>
</form>
</div>
</div>
</div>
</div>
</div>
And with this delay through active jquery the scroll
$(document).ready(function () {
$('#fullpage').fullpage({
menu: '#menu',
anchors: ['firstPage'],
autoScrolling: false,
licenseKey: 'OPEN-SOURCE-GPLV3-LICENSE'
});
})