Team:UniSalento Lecce/js/toggles.js

From 2013.igem.org

$(document).ready(function(){ $(".togglewrap .togglecontent").hide(); $('.togglewrap .toggletitle.active').addClass('active').next().show();

$(".togglewrap .toggletitle").click(function(){ $(this).toggleClass("active").next().slideToggle("fast"); return false; }); });