http://codepen.io/BrianDGLS/pen/yNBrgR
This code snippet I am currently using helps the user keep track of their position on the page.
I'm interested in making a modification to this code: How can I make a div appear when the user reaches the bottom of the page, and stay visible until they refresh?
#show {display: none}
<div id="show">
<p>Hello</p>
<p>World!</p>
</div>
I want to display the div '#show' when the user scrolls to the bottom of the page, and have it remain visible as long as they are on that page.