I have my php coded page on one server that returns a json result. php file called: getInfoData.php and the return is as below.
echo json_encode($v);
No I can use $.getJSON(??) to read the json and run it all on the same sever fine, but I need the php page to be on a different sever than the js page calling it.
But then I get then when I do I get the cross domain issue.
So I changed the code to use the following (jsonp):
$.ajax({
url: 'FILE_LOCATION_ON_ANOTHER_SERVER',
type: 'GET',
crossDomain: true,
dataType: 'jsonp',
success: function() { console.log("Success"); },
error: function() {console.log('Failed!'); }
});
but I do not see anything I just get the following with my console:
http://www.THEURL.com/FOLDER/FILENAME.php?callback=jQuery171013088115444406867_1332256223342&_=1332256223343
and a message saying failed!.
What am I doing wrong and how if at all can I fix this?
Thanks