Html table to csv table with image
- by Joseph
How to export this html table in to CSV
example table:
i want this table to be exported to csv .so how to achieve using JQUERY?
<html>
<body bgcolor="cyan">
<table border="1" align="center" >
<br><a href="imp2.csv">Click Here To View In CSV format</a><img src="up.jpg" align="middle" width="39" height="32" />
<tr>
<th>ID</th>
<th>Name</th>
<th>Month</th>
<th>Savings</th>
</tr>
</table>
</body>
</html>
Thanks
Joseph