I want to extract some information by one JSON archive online
That JSON shows some information (versions) of one magazine. At the moment, the magazine have 7 publications. Okay, for this, I need to do an loop to show all publications/versions of the magazine.
I tried to use AJAX + JSON, but something is going wrong.
$(document).ready(function(){
$.ajax({
type: "get",
dataType: "jsonp",
url: "http://vectraconstrutora.com.br/living/revistas.json",
}).done(function (data) {
alert("Done!");
});
});
The alert don't show because something is going bad :(
I really need help :'(