I have been using $.each of the jQuery framework to iterate through a JSON string that I receive via an AJAX call. Now this string is sometimes quite huge and as a result IE6/7/
Hope to be still in time!
How about a simple -for-?
for(i = 0; i < data.length; i++) {
data[i].property = 'todo';
}
Otherwise -for in-
var mycars = [{name:'Ferrari'}, {name:'BMW'}];
for (i in mycars)
{
document.write(mycars[i].name + "
");
}
Here is the complete answer: How do I iterate over a JSON structure?