hey,
got a simp[le math question, I need to add to values from two different texboxes and I tried like so:
but it jus concentates it and doesnt add the two values together. How can I make this add the two values?
thanks
co
__________________________________________________________
"The only difference between me and a mad man is that I'm not mad."
- Dali
got a simp[le math question, I need to add to values from two different texboxes and I tried like so:
Code:
function sumIt(){
var te = document.alpha.a6.value;
var et = document.alpha.a7.value;
var fin = te + et;
document.alpha.l0.value='$'+fin;
}
but it jus concentates it and doesnt add the two values together. How can I make this add the two values?
thanks
co
__________________________________________________________
"The only difference between me and a mad man is that I'm not mad."
- Dali