07/02/2012, 22:50
|
| Colaborador | | Fecha de Ingreso: junio-2007 Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 4 meses Puntos: 1567 | |
Respuesta: oprimir el boton Algo de transición?
Jquery
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> Mostrar ocultar jquery /*<![CDATA[*/ body { font-size: 14pt; font-family: tahoma; } p#mostrar{ cursor: pointer; } #gracias{ color: #359AFF; } /*]]>*/ <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"> <script type="text/javascript"> //<![CDATA[ $(document).ready(function(){ $("#miForm").hide(); $("#gracias").hide(); $("#mostrar").click(function(){ $("#miForm").show(2000); }); $("#validar").click(function(){ $("#miForm").hide(500); $("#mostrar").hide(); $("#gracias").show(1500); }); }); //]]> Complete ente formulario <form id="miForm" action="#"> <input type="text" name="nombre" /> <input type="submit" id="validar" value="Validar" /> Gracias
Saludos
__________________ La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R. |