[thelist] [OT] Da Vinci

Rob Smith rob.smith at THERMON.com
Fri Apr 15 11:11:23 CDT 2005


Hi list,

I'm sorry, but I got a good laugh about this one. Put your cursor on the
bridge of his nose.
http://www.mos.org/leonardo/ I'm sure Leo would think highly of us geeks
that we did this to him.

<tip type="JavaScript expanding menus" author="Rob.Smith">
I realize this may be novice material, but I'm in the middle of it right now
and thought to share it.

<html>
<head>
<script language="javascript">
function toggleSub(submenu) {
    if (document.getElementById(submenu).style.display == 'none') {
        document.getElementById(submenu).style.display = 'block'
    } else {
        document.getElementById(submenu).style.display = 'none'
    }
}
</script>
</head>

<body>

<table border="0" cellspacing="2" cellpadding="0" bordercolor="#FFFFCC"
width="100%">
  <tr> 
    <td width="200" class="header"> 
      <a name="aBC"></a><a href="#aBC" onclick="toggleSub('BC'); return
false">Click Me</a>
    </td>
  </tr>
  <tr id="BC" style="display: none;"> 
    <td> 
      content is king!	
    </td>
  </tr>
</table>

</body>
</html>
</tip>

Rob Smith


More information about the thelist mailing list