Hi, I'm new to the forum. I saw one of Ultimator's posts where he gives this code (see bellow) and I was wondering if it could have the three buttons by themselves, and when user clicks a button, the diplayed content appears underneath...
here's the code Ultimator posted:
--------------------------------------------
<script type="text/javascript">
function toggleMe(a){
var e=document.getElementById(a);
if(!e)return true;
if(e.style.display=="none"){
e.style.display="block"
}
else{
e.style.display="none"
}
return true;
}
</script>
Bookmarks