Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/01/2011, 09:58
Avatar de masterpuppet
masterpuppet
Software Craftsman
 
Fecha de Ingreso: enero-2008
Ubicación: Montevideo, Uruguay
Mensajes: 3.550
Antigüedad: 16 años, 10 meses
Puntos: 845
Respuesta: duda uso toggle en jquery

Podrías hacer algo asi:

Código Javascript:
Ver original
  1. $(document).ready(function(){
  2.    $("#boton").click(function(event){
  3.       $("#desple").toggle("slow", function(){
  4.          $("#principal").css("opacity", $(this).is(':visible') ? 1 : 0.5);
  5.       });                                    
  6.    });
  7. });

Saludos.