I am building a web site and I use a url which returns a JSON response, like:
{name:mark; status:ok}
I would like to obtain the name, using onl
$(document).ready(function () { var url = 'https://graph.facebook.com/me'; $.getJSON(url, function (data) { alert(data.name); }); });