John Ruffin wrote on 11/12/2008 11:21 PM: > What's the best practice for this remote domain call scenario? > ($.getJson(), $.getScript(), etc...)
AFAIK, IE8 is the only browser currently that has a XS-XHR feature (XDR): http://blogs.msdn.com/ie/archive/2008/06/23/securing-cross-site-xmlhttprequest.aspx So you'll have to make the call to the same domain, and have the server do the remote call and echo back the results. Presumably that's how this works: http://www.ajax-cross-domain.com/ - Bil