Export images along with data for Excel from an html table.

I am using the Table Export plugin to export an html table to excel. I have also included a column with images as shown in this script as

    <tr>
        <td>Chinna</td>
        <td>1,363,480,000</td>
        <td>March 24, 2014</td>
        <td>19.1</td>
         <td><img src="http://i.stack.imgur.com/CekuQ.jpg" width='60'  height='60'/></td>
    </tr>

      

and exported as

<a href="#" onClick="$('#customers').tableExport({type:'excel',escape:'false'});">export</a>

      

If I export this table to excel, the images will not display. So how can I export these images along with data.

+3


source to share





All Articles