トグルのコンテナにクラスを追加して、ページの読み込み時に最初のトグルを開きたい。どうすればいいですか?
これは私のトグルのスクリプトです:http://jsfiddle.net/gKAFT/
$(".toggle-container").hide();
$(".trigger").toggle(function(){
$(this).addClass("active");
}, function () {
$(this).removeClass("active");
});
$(".trigger").click(function(){
$(this).next(".toggle-container").slideToggle();
});
ご挨拶。