Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)
{
...
}
share|improve this question
never heard of that, what is the code you're trying to use? – yoda Dec 9 '09 at 7:27
Elaborate on what you expect it to do, and what it is doing instead. – TM. Dec 9 '09 at 7:28
I think (result) is not evaluatable ? so it might be null or undefined – Mahesh Velaga Dec 9 '09 at 7:31
I tried typeof result,which is "object" – user198729 Dec 9 '09 at 7:31
Just checking, but you are accessing the result items via result[item] right? Also, are you certain that response is valid JSON? – K Prime Dec 9 '09 at 7:38
show 3 more comments

2 Answers

up vote 4 down vote accepted

I tested the code from JavaScript For...In Statement in IE8, no issue.

Definitely not an issue of the loop (not working in IE8) but what is in the 'result' object.

UPDATE:

I found the issue.

In IE8 (not sure about other IE versions) the word "item" somehow is a reserved word or something.

This will work:

var item;
for(item in result)
{
...
}

This will not (if item is not declared):

for(item in result)
{
...
}

This will work:

for(_item in result)
{
...
}
share|improve this answer
1  
It turns out that it's because of lack of this statement:var item;.Have you met this? – user198729 Dec 9 '09 at 7:57
See my findings in my update post. 'item' is indeed the culprit. – o.k.w Dec 9 '09 at 8:51
I'll never find out the truth by myself... – user198729 Dec 9 '09 at 9:37
I would never have found out also if you didn't highlight the 'var item' in your comment :) – o.k.w Dec 9 '09 at 10:44

You should declare item explicitly with var. The standard idiom for using for..in is as follows and should only be used for iteration over objects (not arrays):

for ( var item in result ) {
    if ( !result.hasOwnProperty(item) ) {
        // loop body goes here
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.