Hi, Here's my code:
$.ajax({ type: "GET", url: "http://wcf.msts.com/WcfService.svc/ GetSponsorSearch?keyword=tr&eventsessionid=2", dataType: "xml", success: function(xml) { alert(xml); } }); //end ajax call I know this is a cross-domain issue but I can't get away with our current network setup. wcf.mstsc.com is where all our web services reside. Is there a way I can make the ajax method work, using XML as the return data type, if it's in a different domain? I'm open to a different jquery method (as long as it returns XML) if there is one. Thanks in advance.