-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathexample.html
35 lines (35 loc) · 908 Bytes
/
example.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="./jquery.tabletoCSV.js" type="text/javascript" charset="utf-8"></script>
<script>
$(function(){
$("#export").click(function(){
$("#export_table").tableToCSV();
});
});
</script>
</head>
<body>
<table id="export_table">
<caption>asdsa</caption>
<tr>
<th>blah</th>
<th>blahs</th>
<th>blahss</th>
</tr>
<tr>
<td>blah1</td>
<td>blah1</td>
<td>blah1</td>
</tr>
<tr>
<td>blah2</td>
<td>blah2</td>
<td>blah2</td>
</tr>
</table>
<button id="export" data-export="export">Export</button>
</body>
</html>