Show hidden div permanently throw out website after clicking on a href link once
An example how this should work: The (little-header) div is hidden in the start, but when clicking once on the parent page e.g.(page 1) the (little-header) gets visible throughout the website even though you enter a new page or refresh the site.
<div class="big-header">
<ul>
<li>
<a href="#">Page 1</a>
</li>
<li>
<a href="#">Page 2</a>
</li>
<li>
<a href="#">Page 3</a>
</li>
</ul>
</div>
<div class="little-header">
<ul>
<li>
<a href="#">Sub Page 1.1</a>
</li>
<li>
<a href="#">Sub Page 1.2</a>
</li>
<li>
<a href="#">Sub Page 3.3</a>
</li>
</ul>
</div>
http://jsfiddle.net/ctL6T/179/
I can imagine this being done by Jquery. Anything would be a big help. Cheers!