help modifying jquery to create a table from a csv
I am usin开发者_JS百科g this http://code.google.com/p/jquerycsvtotable/ to generate a table in a webpage from a csv. It works great, but I need to add an image url in the csv and have the code show the actual image instead of just the url string. Any help is appreciated.
It doesn't seem to be possible to do it without modifying jquery.csvToTable.js
To do it, you can edit line 131 to test if the item is an image URL and append the image HTML with the item in the src
attribute
精彩评论