Team:Calgary/Notebook

From 2009.igem.org

(Difference between revisions)
(WEEKLY UPDATES)
(WEEKLY UPDATES)
 
(23 intermediate revisions not shown)
Line 12: Line 12:
----
----
<html>
<html>
-
<p>...This is all visible content...
+
<head>
-
<a href="#" id="example-show" class="showLink"
+
<title>toggle_it() Demo</title>
-
onclick="showHide('example');return false;">See more.</a>
+
<script language="javascript">
-
</p>
+
  function toggle_it(itemID){
-
<div id="example" class="more">
+
      // Toggle visibility between none and inline
-
<p>...This content is hidden by default...</p>
+
      if ((document.getElementById(itemID).style.display == 'none'))
-
<p><a href="#" id="example-hide" class="hideLink"
+
      {
-
onclick="showHide('example');return false;">Hide this content.</a></p>
+
        document.getElementById(itemID).style.display = 'inline';
-
</div>
+
      } else {
 +
        document.getElementById(itemID).style.display = 'none';
 +
      }
 +
  }
 +
</script>
 +
<style type="text/css">
 +
<!--
 +
.style5 {font-family: Arial, Helvetica, sans-serif; font-size: 10; }
 +
.style7 {font-family: Arial, Helvetica, sans-serif; font-size: 10px; }
 +
-->
 +
</style>
 +
</head>
 +
<body>
 +
<form name="test" action="" method="post">
 +
  <table width="199">
 +
    <tr class="style7">
 +
    <td width="50%" align="right" height="23" valign="top"><a href="#" onClick="toggle_it('pr1')"><font size="3">Laboratory</font></a></td>
 +
  <td height="23" valign="left" >
 +
    </td>
 +
<td colspan="2">
 +
<table width="100%" id="pr1" name="police_response1" style="display:none;">
 +
<tr valign="top">  
 +
  <td><span class="style10">Week 1</span></td>
 +
</tr>
 +
<tr>
 +
  <td><span class="style10">Week 2</span></td>
 +
</tr>
 +
<tr>
 +
  <td><span class="style10">Week 3</span></td>
 +
</tr>
 +
<tr>
 +
  <td><span class="style10">Week 4</span></td>
 +
</tr>
 +
  <td><span class="style10"></span></td>
 +
        </tr>
 +
        </table>
 +
        </td>
 +
    </tr>
 +
</table>
 +
</form>
</html>
</html>

Latest revision as of 17:27, 8 June 2009

Home The Team Calendar The Project Parts Submitted to the Registry Modeling Notebook

WEEKLY UPDATES


toggle_it() Demo

Laboratory