Ver Mensaje Individual
  #3 (permalink)  
Antiguo 07/07/2013, 08:40
Avatar de dhayzon
dhayzon
 
Fecha de Ingreso: abril-2013
Ubicación: mx
Mensajes: 64
Antigüedad: 11 años, 1 mes
Puntos: 0
Respuesta: cambiar mostrar ocultar

exelente carlos no hay una respuesta mejor q esa, este es el codigo q estoy usando y funciona de maravilla

Código HTML:
Ver original
  1.     $("#abrir_chart1").click(function(){
  2.         var link = $(this);
  3.         $("#abrir_chart").slideToggle("slow", function() {
  4.             if ($(this).is(":visible")) {
  5.                  link.text("Cerrar chat");                
  6.             } else {
  7.                  link.text("Abrir Chat");                
  8.             }        
  9.         });
  10.            
  11.     });              
  12.  
  13.        </script>