Created
October 9, 2014 07:54
-
-
Save RyoSugimoto/7452ec03988066061dc5 to your computer and use it in GitHub Desktop.
外部のXMLファイルを読み込む。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.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