Basically I have found a way without exit (I am sure there has to be a way) to request a file using JS.
As you know, you cannot request files from a server (e.g. a shared file in google drive) because the access-control-allow-origin security issue.
On the other hand, you cannot access to the disk files because the client-side security issue as well.
In such a case, how I can manage to read a xml file using JS? How I can load that file?
I have tried to create CROS requests as responded in some other question, but unless I have understood bad, this solution requires anyway modify the server settings and I don't have access to the server (as could guess for the beginning the idea was get a file from google drive or dropbox).
So again, how can I manage to get that file either from a server or from my local disk?
Thank you a lot