pinkotoad
07-16-2002, 09:09 PM
Here is a small example.
function ComputeTotal( form )
{
CPU = form.CPU.value
MOB = form.Mainboard.value
subtotal = CPU + MOB
}
This doesn't add the two values, just jams them together.
Forgive me, I haven't done much JavaScripting.:o
function ComputeTotal( form )
{
CPU = form.CPU.value
MOB = form.Mainboard.value
subtotal = CPU + MOB
}
This doesn't add the two values, just jams them together.
Forgive me, I haven't done much JavaScripting.:o