|
Post by Tumbleweed on Jun 17, 2015 0:47:45 GMT -5
<script type="text/javascript"> function toggle_visibility(id) { var e = document.getElementById(id); if(e.style.display == 'block') e.style.display = 'none'; else e.style.display = 'block'; } </script> <a href="#" onclick="toggle_visibility('foo');">Click here to toggle visibility of element #foo</a> <div id="foo">This is foo</div>
|
|
|
Post by Tumbleweed on Jun 17, 2015 2:41:16 GMT -5
xxx
|
|
|
Post by Tumbleweed on Jun 17, 2015 2:50:20 GMT -5
xxxxxxxxxxxx
|
|