¿How i do (with Jquery) to obtain a specific value from this json result? for example for email
[
{
address: "",
province: "",
firstName: "Anna",
email: "anna@example.org",
postalCode: "",
key: "135",
type: "technical",
description: "",
isPrimaryContact: true,
phone: "",
country: "",
city: "",
salutation: "",
position: " Projects Leader, Academic Systems",
lastName: ""
}
]
I use $.ajax() , from a json in a different server.
If you have a JSON object, you would simply use:
Here is a full, shortened example:
If your data is really an array, you would need to use:
Similar shortened example: