Hola amigos:
quisiera saber si yo puedo hacer que en el siguiente codigo no aparezca el resultado de la multiplicación en la casilla "total", pero si que me arroje el mensaje de alerta cuando el resultado de ésta sea mayor a 3 digitos
Adjunto el codigo, de antemano muchisimas gracias
<html>
<head>
<title>validacion Cantidad</title>
<script language="JavaScript">
var total;
function calcularTotalParcial(index){
var cantidad = document.getElementsByName("cantidad")[index];
var precio = document.getElementsByName("precio")[index];
var total = document.getElementsByName("total")[index];
if((cantidad.value != "") && (precio.value != "")){
total.value = cantidad.value*precio.value;
if(total.value.length > 3){
alert ("Valor mayor a 3");
}
if(total.value.length < 3){
alert ("Valor menor a 3");
}
}
}
</script>
</head>
<body>
<form>
<table>
<tr>
<td>Cantidad: <input type="text" name="cantidad" value onChange="calcularTotalParcial(0)"
/ size="20"></td>
<td>Precio: <input type="text" name="precio" value onChange="calcularTotalParcial(0)" /
size="20"></td>
<td>total: <input type="text" name="total" value disabled="true" / size="20"></td>
</tr>
</table>
</form>
</body>
</html>