Ver Mensaje Individual
  #4 (permalink)  
Antiguo 04/05/2009, 07:53
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 15 años, 10 meses
Puntos: 2
Respuesta: Implementar...img src="loading_content.gif" a boton submit

Hola amigos, esto es lo que avanze segun lo sugerido:
js
Código php:
Ver original
  1. function Submit_seguro( formulario ) {  
  2.     for(i=1;i<formulario.elements.length;i++){  
  3.        if(formulario.elements[i].type == 'submit'){  
  4.         formulario.elements[i].disabled = true  
  5.        }  
  6.     }  
  7.     formulario.submit()  
  8.     Submit_seguro = Submit_off  
  9.     return false  
  10. }  
  11. function Submit_off( formulario ) {  
  12.     return false  
  13. }
codigo php
Código php:
Ver original
  1. <form name="form" method="post" action="" onSubmit="Submit_seguro(this)">
  2. <td><button name="boton" type="submit"><img src="img/ajax-loader.gif">ENVIAR</button></td>
...pero favor de orientarme k debo hacer para k cuando de click en ENVIAR, dentro del tag bottom se DESHABILITE y SE OBSERVE LA IMAGEN DE LOAD...

Saludos,