27/01/2012, 11:15
|
| | | Fecha de Ingreso: diciembre-2011 Ubicación: argentina
Mensajes: 213
Antigüedad: 13 años, 1 mes Puntos: 59 | |
Respuesta: Problemas para el boton de envio no remplazaste el html
porque
<input name="Submit " type="text" class="gt" style="font-size: 20px; color: rgb(0, 102, 204); background-color: rgb(244, 244, 244); font-family: Arial;" onKeyUp="refop(),refop2()" value="# producto" size="12" maxlength="8" onClick="this.value=''">
no tiene el id debería ser <input name="Submit" type="text" id="texto" class="gt" style="font-size: 20px; color: rgb(0, 102, 204); background-color: rgb(244, 244, 244); font-family: Arial;" onKeyUp="refop(),popupenter()" value="# producto" size="12" maxlength="8" onClick="this.value=''">
de todos modos puede que tengas razón por las dudas pone <input name="nombre" type="text" id="texto" class="gt" style="font-size: 20px; color: rgb(0, 102, 204); background-color: rgb(244, 244, 244); font-family: Arial;" onKeyUp="refop(),popupenter()" value="# producto" size="12" maxlength="8" onClick="this.value=''">
y en el js remplaza esta línea
qnum = document.refip.Submit.value
por esta qnum = document.refip.nombre.value
__________________ PD gracias por el karma |