Edit: Once the response is valid json, and the ajax success callback executes, in order to convert the json string returned by the server into a javascript object use JSON.parse()
success: function (data) {
var obj = JSON.parse(data);
alert(obj.age);
}
Note: Only the more modern browsers natively support json serialization (JSON.parse). To ensure that older browsers support this functionality, Douglas Crockford's json2.js is recommended:
https://github.com/douglascrockford/JSON-js/blob/master/json2.js
Just download and include the above in your page and you're good to go.
Edit: The response from the server includes an array with another array inside of it that contains the object with your data:
[[{"age":10,"id":"1","name":"John Doe","points":"4275653423"}]]
The server needs to respond with a json string that just contains the object:
'{"age":10,"id":"1","name":"John Doe","points":"4275653423"}'
Finally, the server must respond with the correct content type, 'application/json'
Edit: In your comments you said the server was returning 303, which is a redirect. The url you are using in your ajax call redirects to another url that returns the data you want. You need to use the url that returns the data. The url needs to match exactly. For instance, http://example.com/public/ruser/family is not the same as http://example.com/public/ruser/family/
Edit: final code:
function getData(){
var barcode = $('#idQuery').val();
var test = $.ajax({
type: 'GET',
dataType: 'json',
url: 'http://example.com/public/ruser/family.json',
data: { barcode: barcode },
success: function (data) {
var obj = JSON.parse(data);
alert(obj.age);
}
});
}