Ver Mensaje Individual
  #15 (permalink)  
Antiguo 26/11/2008, 13:31
Avatar de hoberwilly
hoberwilly
 
Fecha de Ingreso: julio-2008
Ubicación: Lima - Perú
Mensajes: 769
Antigüedad: 16 años, 4 meses
Puntos: 2
Respuesta: Consulta...onsubmit

Gracias David por tus consejos,
dejo el codigo x si alguien lo necesite:
Código php:
Ver original
  1. <!-- function confirma(radio)
  2. {
  3.     if(window.bot.value!='Cancelar Pedido') return checked();
  4.     for(i=0;i<radio.length;i++)
  5.     {
  6.         if(radio[i].checked)
  7.         {
  8.             if(confirm('¿Esta seguro de cancelar el pedido Nº '+radio[i].value+ '?'))
  9.                 return true;
  10.                 return false;
  11.         }
  12.     }
  13. } -->