I use this helper function to receive JSON results for my requests:
function getData(url) { $.get(url, function(data) { response =
Use $.ajax
$.ajax({ url: 'http://www.example.com', dataType: 'json', success: function(data){ alert(data.Id); } });