In article <Fahcb.131530$rh.11348016 (AT) amsnews03 (DOT) chello.com>, "Marco Alting"
<marco (AT) hotmail (DOT) com> writes:
Quote:
var ChangedValue = document.getElementById(obj);
var Budget = document.getElementById("Budget" + variation);
var Committed =document.BudgetItem.getElementById("committed" + variation); |
Why the above line isn't throwing errors is erroneous and suspicious.
Quote:
var Actual = document.getElementById("actual" + variation);
var Accrual = document.getElementById("accrual" + variation);
var ChangedHidden = document.getElementById("changedValues" + variation); |
Why are you using getElementById to reference a form? use document.forms
notation and set focus at will.
--
Randy