外部のXMLファイルを読み込む。
$.ajax({ url: 'data.xml', type: 'GET', dataType: 'xml', timeout: 20000, error: function () { }, success: function (xml) { var xmlTree = $(xml); } });