Hey Tom, it's not just a simple case of "Ajax request limited". The issue lies in the fact that AJAX is rooted in JavaScript, and for security reasons, JavaScript is restricted from accessing content across different domains. However, there is a workaround available if you're determined to make cross domain Ajax requests.
Here's how it can be done:
YourPage(Ajax) ----> YourServer ----> ExternalDomain
By utilizing a server-side hack, you can have your domain make a call to your server which in turn communicates with the external domain to retrieve the desired data. This way, the request made to the ExternalDomain server won't include any cookies stored for ExternalDomain in your browser's memory. This setup ensures that the request is initiated by your server and not your browser.