UNPKG

jquery-tableexport

Version:

This is a simple jQuery plug-in that allows exporting html tables to: CSV, XLS, TXT, SQL.

107 lines (96 loc) 3.87 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="Content-Type" content="text/plain; charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Example #2</title> <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"></link> <link rel="stylesheet" href="style.css"> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container home"> <div class="row"> <h1 class="sub-header">Export Table: Example #2</h1> <div class="top-panel"> <div class="btn-group"> <button type="button" class="btn btn-primary btn-lg dropdown-toggle" data-toggle="dropdown">Export to <span class="caret"></span></button> <ul class="dropdown-menu" role="menu"> <li><a onclick="exportTo('csv');" href="javascript://">CSV</a></li> <li><a onclick="exportTo('txt');" href="javascript://">TXT</a></li> <li><a onclick="exportTo('xls');" href="javascript://">XLS</a></li> <li><a onclick="exportTo('sql');" href="javascript://">SQL</a></li> </ul> </div> </div> <div class="table-responsive"> <table id="firm_table" class="table table-striped table-bordered table-hover"> <thead> <tr> <th>#</th> <th class="danger">First Name</th> <th class="danger">Last Name</th> <th class="danger">E-Mail</th> <th>Number</th> </tr> </thead> <tbody> <tr> <td>1</td> <td class="danger">Delpha</td> <td class="danger">siliciophite</td> <td class="danger">circumflex@masterwork.net</td> <td>997300858</td> </tr> <tr> <td>2</td> <td class="danger">Paula</td> <td class="danger">Ausiello</td> <td class="danger">bemirrorment@moy.edu</td> <td>779213455</td> </tr> <tr> <td>3</td> <td class="danger">Gaynell</td> <td class="danger">Salguero</td> <td class="danger">smoothpate@podalgia.edu</td> <td>999908414</td> </tr> <tr> <td>4</td> <td class="danger">Otelia</td> <td class="danger">Nitta</td> <td class="danger">hispanophile@auditorship.edu</td> <td>947377435</td> </tr> <tr> <td>5</td> <td class="danger">Darren</td> <td class="danger">Maltez</td> <td class="danger">toxotidae@tut.net</td> <td>902590424</td> </tr> <tr> <td>6</td> <td class="danger">Larraine</td> <td class="danger">Zelasco</td> <td class="danger">lanciers@unpleasantish.co.uk</td> <td>668639791</td> </tr> </tbody> </table> </div> </div> </div> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.js"></script> <script src="../dist/jquery.tableExport.js"></script> <script src="main.js"></script> </body> </html>