Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/07/2013, 10:26
oms02
 
Fecha de Ingreso: junio-2010
Mensajes: 373
Antigüedad: 13 años, 10 meses
Puntos: 11
Respuesta: funcion slideDown

Hola angieyalver.

No se lo que buscas exactamente pero, esto no te serviría??

Código Javascript:
Ver original
  1. $('#examen').change(function(){
  2.     var value = $(this).attr('value');
  3.     $.post("Tipo-Formulario.php", {'act': 'tipo', 'id': value},  function(data) {
  4.         $('#formulario').slideDown('slow',function(){
  5.             $(this).html(data);
  6.         });                  
  7.     });
  8. });

#formulario esta oculto o algo??