csv2table 0.01-beta-7
February 27, 2008 - 7:52am — tato
Samples | Load CSV and draw Chart--with jQchart
Download: jquery.csv2table0.01-beta-7.js.txt
Size: 7.26 KB
md5_file hash: f02f49ac7445c5f08d538ca776fde5f4
First released: February 27, 2008 - 7:52am
Size: 7.26 KB
md5_file hash: f02f49ac7445c5f08d538ca776fde5f4
First released: February 27, 2008 - 7:52am
Changed default col sepaleter(setting.col_sep) to "," from "\t" . on version 0.01-beta-7.
This Plugin reads the CSV file which you made with Excel and performs the table indication which is a cross browser.
== Mini sample 1 ==
<div id="view1"></div>
<script type="text/javascript">
$(function(){
$('#view1').csv2table('./test/data/utf8/Book12.csv');
});
</script>== Mini sample 2 ==
<div id="view2"></div>
<script type="text/javascript">
$(function(){
$('#view2').csv2table('./test/data/utf8/Book12.csv',{
col_sep : '\t',
onload : function(contents,op,data){
$('tr:even',contents).css('background','#eee')
}
});
});
</script>Samples | Load CSV and draw Chart--with jQchart
