Team:Groningen
From 2014.igem.org
(Difference between revisions)
Andries1990 (Talk | contribs) (Replaced content with "{{CSS/Main}} <html> </html>") |
Andries1990 (Talk | contribs) |
||
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