UNPKG

1.21 kBHTMLView Raw
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <title>TableFilter pop-up filter with one row</title>
6 <link rel="stylesheet" href="libs/qunit/qunit.css">
7 <script src="libs/qunit/qunit.js"></script>
8 <script src="libs/polyfill.js"></script>
9 </head>
10 <body>
11 <table id="demo" cellpadding="0" cellspacing="0">
12 <thead>
13 <tr>
14 <th>From</th>
15 <th>Destination</th>
16 <th>Road Distance (km)</th>
17 <th>By Air (hrs)</th>
18 <th>By Rail (hrs)</th>
19 </tr>
20 </thead>
21 <tbody>
22 <tr>
23 <td><strong>Sydney</strong></td>
24 <td>Adelaide</td>
25 <td>1412</td>
26 <td>1.4</td>
27 <td>25.3</td>
28 </tr>
29 </tbody>
30 </table>
31
32 <script src="../dist/tablefilter/tablefilter.js"></script>
33 <script src="test-popup-filter-one-row.js"></script>
34
35 <div id="qunit"></div>
36 <div id="qunit-fixture"></div>
37 </body>
38</html>