Team:Groningen

From 2014.igem.org

(Difference between revisions)
(Replaced content with "{{CSS/Main}} <html> </html>")
Line 1: Line 1:
{{CSS/Main}}
{{CSS/Main}}
<html>
<html>
-
 
+
<script>
 +
var sections = document.getElementsByTagName('html');
 +
var mySection = null;
 +
for(var i = 0; i < sections.length; ++i) {
 +
  if(sections[i].id === "myId") {
 +
      mySection = sections[i];
 +
      mySection.style.display = "block";
 +
      break;
 +
  }
 +
  sections[i].style.display = "none";
 +
}
 +
</script>
</html>
</html>

Revision as of 13:03, 10 July 2014