I have to agree with the comments above - your question is more than vague! Therefore, I now only guess what you want:
$.getJSON('ajax/test.json', function(data) {
alert(JSON.stringify(data));
});
You might need a JSON library for this:
http://www.json.org/js.html
source
share