For a web service I\'m developing I would like my embedded code (on the client\'s site) to fetch an xml file from my sever script which resides on my domain.
As this
As of jQuery 1.5 there is a utility method, it's saved my life for using jsonp to load in XML.
var xml = "RSS Title", xmlDoc = $.parseXML( xml ), $xml = $( xmlDoc ), $title = $xml.find( "title" );
http://api.jquery.com/jQuery.parseXML/