Hi,
I have a form that i am sending results to.
At the moment the results are sent to a text box i.e:
<input name="red" type="text" class="main" size="8">
Is there a way to display the results as just text without being in a text box?
The results are sent to the form via an 'if statement' in a javascript file. e.g:
if (document.calc.total.value == "100.00")
{
document.calc.red.value="15.00";
}
many thanks!
I have a form that i am sending results to.
At the moment the results are sent to a text box i.e:
<input name="red" type="text" class="main" size="8">
Is there a way to display the results as just text without being in a text box?
The results are sent to the form via an 'if statement' in a javascript file. e.g:
if (document.calc.total.value == "100.00")
{
document.calc.red.value="15.00";
}
many thanks!