Search Results

0
votes

Assign jQuery.get() to a variable?

var manageCSV = function() { var x; $.get('output.csv', function(data) { x = data; }); //do what you want with x } x as defined in an earlier ans …