Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/04/2011, 07:20
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 19 años, 10 meses
Puntos: 834
Respuesta: Leer json en firefox

Probá así:
Código PHP:
var ObjetoJSON= eval("("+json_devuelto_desde_jsp+")"); 
o así:
Código PHP:
var ObjetoJSON= new Function('return '+json_devuelto_desde_jsp)(); 
o (el estandar, pero fijate aquí la tabla de compatibilidad):
Código PHP:
var ObjetoJSON=JSON.parse(json_devuelto_desde_jsp);