i have 110 text boxes and i wanted to sum the values which are available in those 110 text boxes, few may have values so i have written code like below but it is does not give me the correct value in fact it does not even takes the value which are available in text boxes.
following is my code :
var cerTotal =0;
for (var i=1;i<=110;i++)
{
if(global.getElementById('CIMtrek_CI_Act_'+i)){
cerTotal = Number(cerTotal) + Number(global.getElementById('CIMtrek_CI_Act_'+i).value);
}
}
Please help me to find the problem.
Best Regards
global? Shouldn't it bedocument? – VisioN Feb 19 at 11:28