At the JSON site it says
JSON does not support cyclic data structures, so be careful to not give cyclical structures to the JSON stringifier. <
JSON does not support cyclic data structures, so be careful to not give cyclical structures to the JSON stringifier.
var cyclic = {}; cyclic.somekey = cyclic; cyclic.another = "Hello world!";
Now you can do this, for example:
alert(cyclic.somekey.somekey.somekey.another);