Team:Johns Hopkins/Protocols

From 2008.igem.org

(Difference between revisions)
Line 18: Line 18:
<body>
<body>
-
 
<script type="text/javascript">
<script type="text/javascript">
-
function startTime()
+
var hi = "Hello World!";
-
{
+
document.write(hi);
-
var today=new Date();
+
-
var h=today.getHours();
+
-
var m=today.getMinutes();
+
-
var s=today.getSeconds();
+
-
// add a zero in front of numbers<10
+
-
m=checkTime(m);
+
-
s=checkTime(s);
+
-
document.getElementById('txt').innerHTML=h+":"+m+":"+s;
+
-
t=setTimeout('startTime()',500);
+
-
}
+
-
 
+
-
function checkTime(i)
+
-
{
+
-
if (i<10)
+
-
  {
+
-
  i="0" + i;
+
-
  }
+
-
return i;
+
-
}
+
</script>
</script>

Revision as of 18:21, 9 July 2008

Emblum JHU.jpg
Home The Team The Project Protocols&Papers Parts Submitted to the Registry Modeling Notebook

Protocols

Ligation and Transformation Protocol

Papers

Hello World!