When the user clicks on the button, new content gets loaded from the javascript. However, the page automatically goes to the bottom. How do I get the page to stay in place so the user can scroll to the bottom and then click on the button (after they have seen the new content loaded)?
javascript:
<script type="text/javascript">
$(document).ready(function() {
counter = {{page}};
counter = counter-1;
$("#load_more_videos").submit(function(event){
event.preventDefault();
console.log(counter);
$('.more_videos').load("/more_videos/"+counter);
})
});
</script>
html:
<form class="form-horizontal" method='get' action = '' id = 'load_more_videos'>
{% csrf_token %}
<input type='submit' class="btn btn-primary" value='Get more videos'/>
</form>
<div class = 'more_videos'> </div>