How about this
var parsed = new Function('return ' + stringifiedJSON )();
This is a safer alternative for eval
.
var stringifiedJSON = '{"hello":"world"}';_x000D_
var parsed = new Function('return ' + stringifiedJSON)();_x000D_
alert(parsed.hello);
_x000D_