I use the jquery get method to get a response from the server.
$.get($url, function(data){
alert(data);
});
The response is a .csv file and I have no clue to get the data. When I use the alert(data), it prints a null value. I use this for a chrome extension. I have added the "permissions": [ "http:///", "https:///" ],
in my manifest.json file. When I use safari browser in my local, it is working properly.
Am I missing something?
Thanks