why doesn't this work in netscape?  how do i make it work?

Thanks,

Steve


Here's an example of some code...


<SCRIPT LANGUAGE="javascript">
 function toggleChild (entry)
 {
  if (entry.style.display == 'none')
  {
   entry.style.display = 'block';
   return;
  }
  else
  {
   entry.style.display = 'none';
   return;
  }
 }
</SCRIPT>


<table>
<TR>
   <TD align="right">
      <DIV ID="Task" CLASS="parent">
 <B>
          <font color="red">
           <A onClick="toggleChildUClass#ug_counter#)">X</A>
          </font>
        </B>
      </DIV>
   </TD>
</TR>
<TR>
   <TD>
      <DIV CLASS="child" ID="UClass" STYLE="display: block;"
DISPLAY="none">
 <table width="100%">
           <TR>
              <TD><?TD>
           </TR>
        </table>
      </div>
   </td>
</tr>
</table>


--
Steven D Dworman
---------------------------
Cold Fusion Programmer
Web Applications Developer

ComSpec International

phone: 248.647.8841
cell:  734.972.9676
---------------------------
http://www.comspec-intnl.com



Reply via email to