Hello. Should be using JavaScript to pull data from an xml file generated on a remote server. All that could think of is to make an ajax request to the xml file.
But jQuery instead of GET-request sends an OPTIONS request.
It turned out that this request is being sent Firefox'ohms in the case of cross-domain request, when sent non-standard headers. In the case of jQuery it seems:
Access-Control-Request-Headers: x-requested-with
How to get rid of this header? Or maybe there are other ways to extract information from xml?