JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://js-tables.googlecode.com/svn/trunk/jquery.csv.min.js"></script>
JavaScript
$(document).ready(function() {
var lines = $.csv()("a,b\nc,d");
alert(lines[0][1]); // Displays: b
// c instead of the expected b
});