Hi Guys ,
i have an array with the following structure:
data:
[
[1807,1807,"name1","Test1"],
[1807,1807,"name2","Test1"],
[1807,1807,"name3","Test1"],
[1807,1807,"name4","Test1"],
[1807,1807,"name5","Test1"],
[1807,1807,"name6","Test1"]
]
Iam trying to get the value
var pr_id = res.data[i][1];
if i replace "i" with a value this will work in both chrome and IE8 with no error. But as soon as I use my index "i" , this works in chrome but not in IE.
I have the following error :
Code:
Message: 'data[...].1' is null or not an object
Line: 354
Char: 16
Code: 0
Any help?
Thanks