If I have JSON that is:
var response = {results: 2938; id: 9283};
How can I get id using javascript/jquery?
I tried something like but I can't seem to get what I want (I want to get the number in id):
response[1]
and
response[1].id
|
If I have JSON that is:
var response = {results: 2938; id: 9283};
How can I get id using javascript/jquery? I tried something like but I can't seem to get what I want (I want to get the number in id): response[1] and response[1].id |
|||||
|
|
Simple:
With that being said, your json is invalid,
Use a
And since I love jsfiddle so much, here is an example. |
|||
|
|