ok, I"m having serious problems with the DOM when I do ANY kind of Javascript. the following snippet of code doesn't work, for some reason that I can't begin to fathom. Whenever I try to use the getElementById() function, the script stops working. please tell me what I'm doing wrong.
var total=0;
document.write("test");
function quickTotal(price,id){
alert(price)
alert(id)
var object=getElementById(id)
if(object.checked == 1){
total=parseFloat(total)+parseFloat(price)
alert("add")
}
if(object.checked == 0){
total=parseFloat(total)-parseFloat(price)
alert("subtract")
}
alert(total)
//document.floater.price.innerHTML("test")
}