I am using 'benalman simple php proxy' to extract json from some cross-origin url,
The problem is that the request is sent, but i can not see it in the console
How can i get the response please?
http://jsfiddle.net/gnpj5csk/309/
var url =
'http://benalman.com/code/projects/php-simple-proxy/ba-simple-proxy.php?url=http%3A%2F%2F***%3A8080%2F***.php%3Fusername%3D***%26password%3D***';
$.ajax({
'url': url,
'dataType': 'jsonp',
'success': function(response){
console.log(response);
}
});