Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Created October 9, 2014 07:54
Show Gist options
  • Save RyoSugimoto/7452ec03988066061dc5 to your computer and use it in GitHub Desktop.
Save RyoSugimoto/7452ec03988066061dc5 to your computer and use it in GitHub Desktop.
外部のXMLファイルを読み込む。
$.ajax({
url: 'data.xml',
type: 'GET',
dataType: 'xml',
timeout: 20000,
error: function () {
},
success: function (xml) {
var xmlTree = $(xml);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment