Like :
var result = eval('(' + response + ')');
var html = value = '';
for(item in result)
{
}
response is a json response.
It stops at for.. in IE8.
How to fix that?
EDIT
I got the same error when running:
result = [1,2,3];
for(item in result)
{
...
}
typeof result,which is "object" – user198729 Dec 9 '09 at 7:31