working with JSONP
working with JSONP
I have this code,
var url = "site that I'm going the data"
$.ajax({
url: url,
contentType : "application/json",
dataType: "jsonp",
success: function(data){
alert(data);
}
});
that data is displaying, but I can't display it in the page?
any help will do,
Thanks.