Export Html Table to Excel Using jquery
First import one jquery file jquery.battatech.excelexport.js. Code: < html > < head > < title ></ title > < script src ="Js/jquery.battatech.excelexport.js" type ="text/javascript"></ script > <script type="text/javascript"> function btnExport_onclick() { $("#tblcat").btechco_excelexport({ containerid: "tblcat", datatype: $datatype.Table }); window.location.reload(); return false; } </script> </head> <body> <input type="button" id="btnExport" value="Export" onclick="return btnExport_onclick()" /> <table id="tblcat" class="display" cellspa...