I m trying to grab data from a JSON on an external site but the site doesn t support JSON-P output. This is an example of non-working code, but gives a good idea of what I m trying to achieve:
$.getJSON("http://www.bom.gov.au/fwo/IDV60901/IDV60901.94868.json", function(data){
//Process data here
});
Are there ways around this other than locally hosting the data or downloading and processing it with an AJAX/PHP call? I would rather not have the server serve or download the data and rather have the user s browser grab it directly.
Thanks in advance!