Skip to content

Instantly share code, notes, and snippets.

View schlameel's full-sized avatar

Schlameel schlameel

  • US
View GitHub Profile
@schlameel
schlameel / gist:3730350
Created September 15, 2012 23:34
JQuery.get() Text
var url = "http://server.com/text/vegetables.txt"
$.get(url,
function(data) {
vegetables = data.split('n');
doSomething(vegetables);
},
"text"
);
@schlameel
schlameel / gist:3730341
Created September 15, 2012 23:32
JQuery.get() Chrome Only
// Read a text file into an array
//
// Text File:
// ----------
// Apple
// Banana
// Carrot
// Dragon Fruit
// Eggplant