In an ajax request it returns the following:
{
"og:locale":"pt_BR",
"og:type":"article",
"og:title":"Um titulo qualquer",
"og:url":"http:\/\/www.umsite.com.br\/uma-url\/"
}
My request:
$.ajax({
type: "GET",
url: '../pegaurl.php',
data : { "url" : url},
dataType: 'json',
success: function (e) {
console.info(e[0]);
...
How do I read each element separately in the javascript afterwards?