Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

csv2table 0.01-beta-7


Download: jquery.csv2table0.01-beta-7.js.txt
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