In the postbit I am working on I am trying to make a piece of my postbit that is default closed unless you have the person on your buddylist. Here is the code I had that was my original concept without the button image code.
Code:
<div style="margin:0px; margin-top:2px">
<div class="smallfont" style="margin-bottom:2px"><input type="button" value="Show" style="width:45px;font-size:10px;margin:0px;padding:0px;" onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = 'Hide'; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = 'Show'; }"> </div>
<div> <div style="display: none;"> content </div>
</div>
</div>