faqts : Computers : Programming : Languages : JavaScript : Tables

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

57 of 85 people (67%) answered Yes
Recently 6 of 10 people (60%) answered Yes

Entry

How do I make a table cell transparent again after setting the bgColor?

Apr 25th, 2000 03:21
Martin Honnen,


Simply by setting
  cellReference.bgColor = 'transparent'
e.g.
  <TABLE BACKGROUND="kiboInside.gif">
  <TR>
  <TD ONMOUSEOVER="this.bgColor = 'orange'"
      ONMOUSEOUT="this.bgColor = 'transparent'"
  >
  JavaScript.FAQTs.com
  </TD>
  </TR>
  </TABLE>