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've got this code:

$(function(){
    var wysproj = $(window).height() * 0.8;
    $(".projekt").click(function(){
        $(this).addClass('klikniety').addClass('nogray').animate({height: wysproj}, {  duration: 800, queue: false }).children(".home2").animate({height:"70%"}, { duration: 800, queue: false }).children(".slide").animate({height:"100%"}, { duration: 800, queue: false });
        $(this).children(".opis").css({display:"block"});
        $(".projekt").not(this).animate({height:"200px"}).removeClass('nogray').removeClass('klikniety').children(".home2").animate({height:"200px"}).children(".slide img").animate({height:"200px"});
    });
});

When you click on .projekt it's getting zoom, and when you click another .projekt the rest is resizing to default.

How do i write it so that first, the previous .projekt will be scaled to default, and then the new, clicked one will zoom?

share|improve this question

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.