Link to home
Start Free TrialLog in
Avatar of ChristinaPupo
ChristinaPupo

asked on

Help with javascript error "..is null or not an object"

Hi, I have a javascript that is supposed to calculate a discount percentage:

<SCRIPT language=JavaScript>
<!--
function perc1() {
 discPerc = document.form1.discPerc.value/100;
 discTotal = discPerc*document.form1.subTotal.value;
 document.form1.discTotal.value = discTotal
 }
 //-->
</SCRIPT>

<tr>
<td colspan="2" align="right"><INPUT onclick=perc1() type=button value=Calculate>&nbsp;&nbsp;<i><%=discCode%></i>&nbsp;&nbsp;<input type="text" name="discPerc" size="4" maxlength="10" value="<%=moneyD(formatNumber(discPerc,2))%>" />%&nbsp;&nbsp;<b>Discount Code:&nbsp;&nbsp;</b></td>
<td nowrap=""><%=pCurrencySign%><input type="text" name="discTotal" size="5" maxlength="10" value="<%=moneyD(discTotal)%>" />(-)</td>
</tr>

BUT I keep getting this error:

document.form1.discPerc.value is null or not an object.

The form is named form1. Can anyone help?
ASKER CERTIFIED SOLUTION
Avatar of Melih SARICA
Melih SARICA
Flag of Türkiye image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ChristinaPupo
ChristinaPupo

ASKER

Thanks, I found the problem. There was another form on the page with the same name. Thanks anyway!
Thank you!  Your assist put me over the threshold of "Sage" for JavaScript! :-)

Thanks for the grade & points.

Good luck & have a great day.