[jQuery] Re: IE JSON eval problem

2007-11-02 Thread Michael Geary
That code shouldn't work in any browser. The fact that it works in Firefox is actually considered a bug, which I believe is being fixed in 3.0. eval() is supposed to be a method of the window object (i.e. a global function). It isn't supposed to be available as a method of every object. What is

[jQuery] Re: IE JSON eval problem

2007-11-02 Thread mngd
Of course - how obvious, silly me, I'm new to JSON and had a mental block about the eval thing. The [0] you mentioned shouldn't have been there, I was simplifying my code before posting and forgot to remove it. Thanks! On Nov 2, 3:58 pm, Michael Geary [EMAIL PROTECTED] wrote: That code