http://oxtag.com/html/ex/toggle.html

<script>
function toggle(el)  {
 if (el.style.display == 'none'){
        el.filters.blendTrans.Apply();
    el.style.display = '';
        el.filters.blendTrans.Play()
 }
 else {
        el.filters.blendTrans.Apply();
    el.style.display = 'none';
        el.filters.blendTrans.Play()
 }
}
</script>
</head>
<body>
<SPAN style='CURSOR: hand' onclick='toggle(abc);'><font size=2>show</font></span>
<div id='abc' style='display:inline;width:100%;filter:blendTrans(Duration=0.5)'>
<table width=300 height=30 bgcolor=737373>
 <tr><td style=font-size:9pt align=center>
         show 클릭시 사라짐. 재 클릭시 보여줌.
 </tr></td>
</table>
</div>
Posted by 알 수 없는 사용자
,