I am attempting to retrieve the following JSON
Data:
{"status":"success","id":8,"title":"Test","content":"This is test 12"}
Using this Ajax Request:
$.ajax({
url: 'http://www.XXX.de/?apikey=XXX&search=test',
type: "GET",
dataType: 'jsonp',
success: function(data){
$('#content_test').append(data.content);
},
error: function(data){
//
}
});
Unfortunately, it is not working. Can anyone help me figure out what I'm doing wrong?