I use an XMLHttpRequestOject to get content from a third party site. When executing my script, I have fiddler running and I can see that the response is fully received (200 ok). However the XMLHttpRequestObject.status is always 0 (I don't get the 200) while the XMLHttpRequestObject.readyState is 4. I'm assuming that the browser is actually blocking the response then (and not the server getting the request).
Is there any workaround, from the client side to enable the browser to display the received response?