UNPKG

tablefilter

Version:

A Javascript library making HTML tables filterable and a bit more

39 lines (36 loc) 1.21 kB
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>TableFilter pop-up filter with one row</title> <link rel="stylesheet" href="libs/qunit/qunit.css"> <script src="libs/qunit/qunit.js"></script> <script src="libs/polyfill.js"></script> </head> <body> <table id="demo" cellpadding="0" cellspacing="0"> <thead> <tr> <th>From</th> <th>Destination</th> <th>Road Distance (km)</th> <th>By Air (hrs)</th> <th>By Rail (hrs)</th> </tr> </thead> <tbody> <tr> <td><strong>Sydney</strong></td> <td>Adelaide</td> <td>1412</td> <td>1.4</td> <td>25.3</td> </tr> </tbody> </table> <script src="../dist/tablefilter/tablefilter.js"></script> <script src="test-popup-filter-one-row.js"></script> <div id="qunit"></div> <div id="qunit-fixture"></div> </body> </html>