jquery flash object show hide
        Posted  
        
            by coure06
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by coure06
        
        
        
        Published on 2010-04-22T18:33:19Z
        Indexed on 
            2010/04/22
            18:43 UTC
        
        
        Read the original article
        Hit count: 209
        
i am trying to show/hide a flash object based on click of button, but the code is not working
//to hide
$('object').css({visibility: 'hidden'});
//to show
$('object').css({visibility: 'visible'});
i dont want to use .show() and .hide() as they will also remove the area of flash content.
© Stack Overflow or respective owner