The division ends without displaying the footer.
<div id="fullpage">
<div class="section " id="section0"> content1 </div>
<div class="section " id="section0"> content1 </div>
<div class="section " id="section0"> content1 </div>
<div class="section " id="section0"> content1 </div>
</div>
<footer> this is my footer </footer>
Here is the corresponding script:
<script type="text/javascript">
$(document).ready(function() {
$('#fullpage').fullpage({
verticalCentered: false,
resize : true,
easing: 'easeInQuart',
navigation: true,
navigationPosition: 'right',
scrollOverflow: false,
});
});
</script>
Although smooth scrolling works with full page js, the footer fails to display.