Team:BYU Provo/Team OxyR
From 2011.igem.org
(Difference between revisions)
Cheddar3210 (Talk | contribs) |
Cheddar3210 (Talk | contribs) |
||
Line 5: | Line 5: | ||
ele.style.fontWeight = "bold"; | ele.style.fontWeight = "bold"; | ||
ele.style.backgroundColor = "#059469"; | ele.style.backgroundColor = "#059469"; | ||
- | jQuery('. | + | jQuery(document).ready(function(){ |
+ | $('.accordion').click(function() { | ||
+ | $(this).next().toggle("slow"); | ||
+ | return false; | ||
+ | }).next().hide(); | ||
+ | $('.accordion2').click(function() { | ||
+ | $(this).next().next().toggle("slow"); | ||
+ | return false; | ||
+ | }).next().next().hide(); | ||
+ | $('.accordion').next().show(); | ||
+ | }); | ||
</script></html> | </script></html> | ||
</div> | </div> |
Revision as of 21:16, 23 September 2011
|