still no good
is this what u meant i still have the problem with it seeming like it is on blur.
<html>
<body>
<script language="JavaScript">
function calculate()
{
A1 = document.Qty_form.quanity.value;
A2 = document.Qty_form.price.value;
A3 = (A1*A2);
document.Qty_form.total.value = A3;
}
</script>
<html>
<body>
<form name="Qty_form">
<input type="text" name="quanity">
X
<input type="text" name="price" onChange=calculate();>
=
<input type="text" name="total" >
</form>
<style type="text/css">
</body>
</html>
__________________
some times i sits n i thinks ............ some times i jus sits.
Last edited by jmad; 04-26-2007 at 02:29 PM.
|