I have few html pages that I want to call from the left navigation bar. I tried using onclick function but somehow height=100% did not work properly for me.
Now I used a simple solution but after clicking on the link , it replaces the whole page and my navigation bar also disappears .
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="http://www.google.com">Google</a>
<a href="https://ca.yahoo.com/?p=us">Yahoo</a>
</div>
I am looking for some solution where my left navigation bar stays the same and by clicking on the links , respective page appears in the right side.