Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
What is global? Shouldn't it be document? – VisioN Feb 19 at 11:28
var global = window.document – Anto Feb 19 at 11:30
1  
You should check if the value not equal 0 or blank, because if 110 text fields are available then your if condition never failed. – Sudip Pal Feb 19 at 11:33

2 Answers

up vote 1 down vote accepted

Try this

<input type="text" id="CIMtrek_CI_Act_1" />
<input type="text" id="CIMtrek_CI_Act_2" />
<input type="text" id="CIMtrek_CI_Act_3" />
<input type="button" id="btn" onclick="sumUp()" value="SUM" />


<script>
function sumUp() {
   var cerTotal = 0;
   for (var i = 1; i <= 110; i++) {
     if (document.getElementById('CIMtrek_CI_Act_' + i) &&
         document.getElementById('CIMtrek_CI_Act_' + i).value != '') {
           cerTotal += parseFloat(document.getElementById('CIMtrek_CI_Act_' + i).value);
        }
   }
   alert(cerTotal);
}
</script>
share|improve this answer

Assuming that global is defined, you have the wrong operator. You are assigning your total for each iteration, you should do this instead

 cerTotal += ...
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.