Team:ETH Zurich/tpl/read-more
From 2014.igem.org
(Difference between revisions)
Line 1: | Line 1: | ||
<html> | <html> | ||
<script> | <script> | ||
- | |||
$(document).ready(function(){ | $(document).ready(function(){ | ||
- | $("# | + | $("#hidesum").click(function(){ |
- | $(" | + | $(".summary").hide(); |
}); | }); | ||
- | $("#show").click(function(){ | + | $("#showsum").click(function(){ |
- | $(" | + | $(".summary").show(); |
+ | }); | ||
+ | }); | ||
+ | $(document).ready(function(){ | ||
+ | $("#hideback").click(function(){ | ||
+ | $(".background").hide(); | ||
+ | }); | ||
+ | $("#showback").click(function(){ | ||
+ | $(".background").show(); | ||
+ | }); | ||
+ | }); | ||
+ | $(document).ready(function(){ | ||
+ | $("#hidegoals").click(function(){ | ||
+ | $(".goals").hide(); | ||
+ | }); | ||
+ | $("#showgoals").click(function(){ | ||
+ | $(".goals").show(); | ||
+ | }); | ||
+ | }); | ||
+ | $(document).ready(function(){ | ||
+ | $("#hideimp").click(function(){ | ||
+ | $(".implementation").hide(); | ||
+ | }); | ||
+ | $("#showimp").click(function(){ | ||
+ | $(".implementation").show(); | ||
+ | }); | ||
+ | }); | ||
+ | $(document).ready(function(){ | ||
+ | $("#hidetools").click(function(){ | ||
+ | $(".tools").hide(); | ||
+ | }); | ||
+ | $("#showtools").click(function(){ | ||
+ | $(".tools").show(); | ||
+ | }); | ||
+ | }); | ||
+ | $(document).ready(function(){ | ||
+ | $("#hideapp").click(function(){ | ||
+ | $(".applications").hide(); | ||
+ | }); | ||
+ | $("#showapp").click(function(){ | ||
+ | $(".applications").show(); | ||
}); | }); | ||
}); | }); |
Revision as of 15:03, 12 August 2014