JQuery.get() Chrome Only
// Read a text file into an array | |
// | |
// Text File: | |
// ---------- | |
// Apple | |
// Banana | |
// Carrot | |
// Dragon Fruit | |
// Eggplant | |
var url = "http://server.com/text/vegetables.txt" | |
$.get(url, | |
function(data) { | |
vegetables = data.split('n'); | |
doSomething(vegetables); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment