Nuevamente por aqui... salgo de un error y entro en otro.
<form action='Ventas/cesta.php?action=add_item&id=$art[cod_art]' method=post name=frmCantidad class=form id=frmCantidad>
<input name='txt_cantidad' type='text' class='caja' style='text-align:center' onKeypress='Validar_Numeros()' value='1' size='4' maxlength='2' >
<input type='submit' name='btn_enviar' value='Enviar' class='boton' onClick='cantidad_comprar()'>
</form>
//************************************************** *****
function cantidad_comprar(){
var tit = document.getElementById("txt_cantidad").value;
if (parseInt(tit) > 10){
alert ('Solo puede comprar menos de 10 articulos');
txt_cantidad.focus();
return;
} else {
submit();
}
}
El problema es el siguiente:
Si en el text ingreso 1 se dirige a Ventas/cesta.php Aca no tengo problemas.
Si coloco 13 me envia el mensaje del alert PERO... se dirige de todas maneras a Ventas/cesta.php?.........
Porque me envia de todas maneras si en el if lo estoy evaluando bien.
Gracias