Just as a note, the following code produces this output: Author-Subtitle-
var json = {"p":{"b":"Title","i":"Subtitle","b":"Author"}};
for(x in json.p) document.write(json.p[x]+"-");

And the following code produces this output: Title,Author-Subtitle-
var json = {"p":{"b":["Title","Author"],"i":"Subtitle"}};
for(x in json.p) document.write(json.p[x]+"-");

~Sean

Reply via email to