Hi,
I have following kind of index while accessing json data using jquery
data.rows[0].student_1
data.rows[0].student_2
data.rows[0].student_3 and so on...
Now, i want to automate this thing in a loop like
for(var i=1;i<length;i++)
{
// so that i can access all student records i.e. student_1, student_2 and so on
data.rows[0].student_+i; // this doesn't work
}