jquery - Javascript Download to excel sheet -


there html table as

<table>        <tr><th>name</th></tr>        <tr><td>sal</td></tr>        <tr><td>tom</td></tr>        <tr><td>sam</td></tr>        <tr><td>jenny</td></tr> </table> 

download excel sheet

on click hyperlink how save table excel sheet

try this:

function makesheet() { var x = thetable.rows  var xls = new activexobject("excel.application") xls.visible = true xls.workbooks.add (i = 0; < x.length; i++){   var y = x[i].cells (j = 0; j < y.length; j++){      xls.cells( i+1, j+1).value = y[j].innertext    }   } } 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -