I am currently trying to get data from a remote url using jQuery ajax calls.
I am just using a basic jquery function to do this. When using a local file the functions works correctly but it does not get a remote file.
I'm using the local files using Mamp on my local pc.
$.ajax({
url: "URL",
success: function(data) {
$('#notification').html(data);
}
});
Any ideas why this may not be work would be a great help?
Thanks, Kane