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 need to handle multiple slide toggle for 2 different divs using jquery.

example: when I click a button, it should slideLeft the 1st div and at the same time it should expand the 2nd div covering the whole area of the 1st div.

Thanks in advance.

Here the piece of code I have used:

$(document).ready(function() {
    $('#foo').click(function() {
        $('#accordian').toggle("slide", 300);
        if ($(this).val() == "Hide Menu"){
            $(this).val("Show Menu");
            $('#area').css({"max-width":"960px"});
        }else{
            $(this).val("<< Hide Menu");
            $('#area').css({"max-width":"730px"});
        }
    });
share|improve this question
2  
Put the code for both in the same click handler, it's that simple – Asad Nov 23 '12 at 10:14
Hello Asad, can you please elobrate with some example? – user1671639 Nov 23 '12 at 10:16
inprove your accept rate if you want to seek for better help – Eli Nov 23 '12 at 10:17
how to increase the accept rate? – user1671639 Nov 23 '12 at 10:18
You have 3/8 accepted anwers in your previous questions. – Johan Nov 23 '12 at 10:19
show 3 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.