-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
48 lines (47 loc) · 798 Bytes
/
demo.html
File metadata and controls
48 lines (47 loc) · 798 Bytes
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
36
37
38
39
40
41
42
43
44
45
46
47
48
<html>
<head>
<title>This is a Test Page</title>
<script type="text/javascript" src="saveAsExcel.js"></script>
</head>
<body>
<iframe id="textArea" style="display:none"></iframe>
<input type="button" value="Import as Excel" onclick="saveAsExcel('tableToExcel', 'lollipop.xls')"/>
<table border="2px" id="tableToExcel">
<tr>
<th>SNo</th>
<th>Name</th>
<th>Other</th>
</tr>
<tr>
<td>1</td>
<td>auibla</td>
<td>NA</td>
</tr>
<tr>
<td>2</td>
<td>daula</td>
<td>NA</td>
</tr>
<tr>
<td>3</td>
<td>caula</td>
<td>NA</td>
</tr>
<tr>
<td>4</td>
<td>ailab</td>
<td>NA</td>
</tr>
<tr>
<td>4</td>
<td>aasg</td>
<td>NA</td>
</tr>
<tr>
<td>5</td>
<td>abghr</td>
<td>NA</td>
</tr>
</table>
</body>
</html>