/ Published in: JavaScript
Show Hide DIV
Expand |
Embed | Plain Text
<script type="text/javascript" language="JavaScript"> function showdiv(divname) { document.getElementById(divname).style.display = "block"; } function hidediv(divname) { document.getElementById(divname).style.display = "none"; } </script>
Comments
Subscribe to comments
You need to login to post a comment.

can u provide the html and the css code for this too.