I want the contents to be visible once clicked but this script hide it on second click too..
Code:<!-- function toggle_visibility(id) { var e = document.getElementById(id); if(e.style.display == 'block') e.style.display = 'none'; else e.style.display = 'block'; } //-->
Code:<li><a href="#" onclick="toggle_visibility('Websites'); ">Websites</a></li>
Code:<div id="Websites"> <----------- CONTENTS INSIDE--------------> </div>
So i want to make it only show when i click on the nav menu known as "Websites".But it hides on 2nd click.
Please help me..
Thank you![]()


(Read this :
Reply With Quote
icon on the left of the post.
