JQuery.get() Text
var url = "http://server.com/text/vegetables.txt" | |
$.get(url, | |
function(data) { | |
vegetables = data.split('n'); | |
doSomething(vegetables); | |
}, | |
"text" | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment