I have some really simple json I need to parse and then run conditional statements on. The json looks like:
thejson(
{"catalog.exists":"0"},"");
And I am trying to parse it with:
$('.clicky').click(function(){
$.ajax({
type: 'GET',
url: 'http://myjsonfile.com',
data: 'req=exists,json',
dataType: 'jsonp',
success: function (results) {
var x= catalog.exists;
$("#results").append(x);
}
});
});
However I just get an error that thejson is not defined.
Thanks in advance for any help.

thejson({...});rather then assigning it as a variable:var thejson = {...};– drudge Apr 14 '11 at 21:42results.catalog.exists? Because there's no reason catalog.exists would reference what you want at this context; I'm not even sure catalog.exists is valid JSON. – Zirak Apr 14 '11 at 21:45{"catalog.exists":"0"}is valid JSON, butthejson({"catalog.exists":"0"},"");is not. It looks like a function call. – ikegami Apr 14 '11 at 21:55