Something strange is happening and I can't seem to figure it out, causing a big issue for me.
I am currently working on a .Net web application that utilizes JSON (not json2) along with other JS libraries. In one specific proxy, the function JSON.eval() is used. However, this method seems to be undefined on a tester's computer. Interestingly, on my own computer (connecting to the same servers as hers), I have access to the complete JSON object:
JSON
{
copyright : "(c)2005 JSON.org",
license : ...
stringify : ...
eval : ...
parse : ...
}
On the problematic PC (both running Win7 with IE9), only the following properties are available when evaluating JSON from the debugger console:
JSON
{
stringify : ...
parse : ...
}
It feels like there's something obvious that I'm missing...