Load a csv from a local file (not http content-type set)
Works with Chrome (with --allow-file-access-from-files)
Firefox reports "sytax error" on the .csv file
Fix:
add "text" as the last argument to $.get() to prevent Firefox from parsing the
file,line 150
--- jquery.csvToTable.js 2012-02-16 10:48:18.000000000 +0100
+++ jquery.csvToTable.js.orig 2012-02-16 10:48:11.000000000 +0100
@@ -150 +150 @@
- }, "text");
+ });
Original issue reported on code.google.com by
harald.s...@gmail.comon 16 Feb 2012 at 9:49