This is right from the code itself for the ".ajax()" function // Create the request object; Microsoft failed to properly // implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available var xhr = window.ActiveXObject ? new ActiveXObject ("Microsoft.XMLHTTP") : new XMLHttpRequest();
On Jan 14, 9:50 am, "g...@getsharepoint.com" <g...@getsharepoint.com> wrote: > Hi, > > If my code is on mydomain.com and I want to get some data from > yourdomain.com can I use .ajax with async=false or does .ajax always > do an XMLHttpRequest to get it's data? > > I know I can't use XMLHttpRequest for cross-domain requests. > > Thanks ahead of time.