I want to make first toggle opened on page load by adding an extra class to toggle's container. How can I do it?
This is my toggle's script: 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();
});
Greetings.
$(".trigger").first().click();or setup the CSS for the first block accordingly. – Felix Kling Dec 23 '12 at 12:57