Template:Team:TU Munich/ExCol
From 2012.igem.org
(Difference between revisions)
Line 14: | Line 14: | ||
}); | }); | ||
$('h4').parent('div.bezel').children('h4').attr({ onMouseOver: "this.style.cursor='pointer'"}) | $('h4').parent('div.bezel').children('h4').attr({ onMouseOver: "this.style.cursor='pointer'"}) | ||
+ | }); | ||
+ | $('h3').parent('div.experiment').children('h3').append("<span style='font-size:90%;float:right;'class='excol'> [Expand]</span>") | ||
+ | $('h3').parent('div.experiment').children().not('h3').hide() | ||
+ | $('h3').parent('div.experiment').children('h3').click(function() { | ||
+ | if( $(this).parent('div.experiment').children('h3').children('span.excol').html() == ' [Expand]') { | ||
+ | $(this).parent('div.experiment').children('h3').children('span.excol').html(' [Collapse]') | ||
+ | }else { | ||
+ | $(this).parent('div.experiment').children('h3').children('span.excol').html(' [Expand]') | ||
+ | } | ||
+ | $(this).parent('div.experiment').children().not('h3').slideToggle() | ||
+ | }); | ||
+ | $('h3').parent('div.experiment').children('h3').attr({ onMouseOver: "this.style.cursor='pointer'"}) | ||
}); | }); | ||
</script> | </script> | ||
</html> | </html> |
Revision as of 17:20, 26 September 2012