blob: c9105c37223a3972a20dae89ea693ec2ac7d5cf9 (
plain)
1
2
3
4
5
6
7
|
$(function(){
$(".expand > h1").toggle(
function(){$(this).parent(".expand").find(".expander").slideUp('fast');},
function(){$(this).parent(".expand").find(".expander").slideDown('fast');}
);
});
|