Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
1.00/5 (4 votes)
See more:
function calcc() {
       var table = document.getElementById('countTable');
       var   total;
       var arlene1 = [];
       arlene1=document.getElementById('t3').value;
       for (var i = 0; i < table.rows.length; i++) {
           total += +parseFloat(arlene1[i],10);
           alert(total);
        document.getElementById('Text1').value = total;

       }
Plz Any help Me sir
Posted
Comments
__TR__ 31-Aug-12 6:34am    
Your question is not clear. Please elaborate.
ZurdoDev 31-Aug-12 8:27am    
Just step through the code and debug it. It should be easy to find what the issue is. It is likely that arlene1[i] doesn't exist since arlene1 is a single value.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900