Team:Cambridge/Research

From 2009.igem.org

(Difference between revisions)
(New page: {{Template:Cambridge2}}<!--Do not remove the first and last lines in this page!--> <h1>title</h1> text <!--Do not remove the first and last lines in this page!--><div id="contentbox_bottom...)
Line 2: Line 2:
<h1>title</h1>
<h1>title</h1>
text
text
 +
 +
 +
<html>
 +
<head>
 +
<script language="JavaScript">
 +
 +
function toggle () {
 +
if (id_name1.style.display == "none") {
 +
id_name1.style.display = '';
 +
id_name2.style.display = 'none';
 +
}
 +
else {
 +
id_name1.style.display = 'none';
 +
id_name2.style.display = '';
 +
}
 +
}
 +
 +
</script>
 +
</head>
 +
<a href="javascript:toggle()">Toggle!</a><br><br>
 +
 +
<table style="display: ''" id="id_name1">
 +
<tr>
 +
<td>Toggling, wheeeeeeeeeeeeeeee!</td>
 +
</tr>
 +
</table>
 +
 +
<table style="display: 'none'" id="id_name2">
 +
<tr>
 +
<td>Toggling, wheeee!</td>
 +
</tr>
 +
</table>
 +
<!--Do not remove the first and last lines in this page!--><div id="contentbox_bottom"></div></div>
<!--Do not remove the first and last lines in this page!--><div id="contentbox_bottom"></div></div>

Revision as of 09:09, 28 July 2009


title

text


Toggle!

Toggling, wheeeeeeeeeeeeeeee!
Toggling, wheeee!