Team:Goettingen/suplement/scripts

From 2013.igem.org

Revision as of 17:12, 30 May 2013 by Demarcia (Talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 $(".f-larger").click(function(){
   $("p").css("font-size","16pt");
 });
 $(".f-smaller").click(function(){
   $("p").css("font-size","12pt");
 });
 $("#supervisors").hide();
 $("#students").hide();
 
 $(".OurTeam").click(function(){

$("#OurTeam").show(); $("#supervisors").hide(); $("#students").hide();

 });
 $(".supervisors").click(function(){

$("#OurTeam").hide(); $("#supervisors").show(); $("#students").hide();

 });
 $(".students").click(function(){

$("#OurTeam").hide(); $("#supervisors").hide(); $("#students").show();

 });