So, I have two div
s that occupies equal amount of height of page (each height=50%).
<div class="first" id="first" style="height:50%;">
First content
</div>
<div class="second" id="second" style="height:50%; display:none;">
Second content
</div>
<script>
jQuery("#first").click(function () {
jQuery('#second').show();
});
</script>
As you can see, the second part only shows up when the first div
is clicked.
How can I make it so that the page (mobile mostly), scrolls down the the bottom of the page?
Thanks!!