Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
$(".trigger").first().click(); or setup the CSS for the first block accordingly. – Felix Kling Dec 23 '12 at 12:57

4 Answers

up vote 1 down vote accepted

You can trigger the event:

$(".trigger").click(function(){
    $(this).next(".toggle-container").slideToggle();
}).first().click();

http://jsfiddle.net/sAxC7/

Note that toggle method is deprecated, you can use toggleClass instead:

$(".trigger").click(function(){
    $(this).toggleClass('active').next(".toggle-container").slideToggle();
}).first().click();

http://jsfiddle.net/B3Luc/

share|improve this answer

Use the fist selector:

$(".trigger:first").next(".toggle-container").slideToggle();

Fiddler: http://jsfiddle.net/cXhQN/

However this doesn't work for SEO since Search engindes don't execute the JavaScript.

share|improve this answer

You can use this solution:

jQuery(document).ready(function($) {       

    $(".toggle-container").hide(); 
    $(".trigger").toggle(function(){
        $(this).addClass("active");
        }, function () {
        $(this).removeClass("active");
    });
    $(".trigger").click(function(){
        $(this).next(".toggle-container").slideToggle();
    });

    $('.toggle-container').first().show(); 
});
​

Here is a fiddle. The thing that's different is the last line $('.toggle-container').first().show(); which shows the first toggle container.

share|improve this answer
$(".trigger:first").trigger("click");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.