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'm using jQuery to hide and show a series of DIVs on a page on an image press. I'm seeing problems when I hide the area then resize the browser window (Firefox 5 Windows XP). When I go to show the elements again, only the second half of them are animated display. If I resize my window manually, it displays correctly again. Here is a code snippet:

$("#imgToggle").click( function ( event ) {
   var isVis = ($("#container1").is(":visible") );

    $("#container1").animate( {width: 'toggle'} );            
    $("#container2").animate( {width: 'toggle'} ); 

    if ( isVis )
    {
       $("#leftPanel").css( "z-index" , "5" );
    }
    else
    {
       $("#leftPanel").css( "z-index" , "" );

    }

});

I have tried using a window.resizeTo(currentWidth, currentHeight) after all of this but, it did not work. Any thoughts, ideas?

Thanks in advance.

share|improve this question
1  
Can you post some html or even better, a link to the site or example page? – Andy Jul 5 '11 at 16:54
I am working on something to post right now. – Corv1nus Jul 5 '11 at 17:54
@Andy actually I just found a better solution that doesn't use the animate and does a z-index toggle to overlay the left panel on the right. – Corv1nus Jul 5 '11 at 18:23

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.