Advertisement
Guest User

table

a guest
Mar 31st, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. <head>
  2. <link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.11/css/jquery.dataTables.min.css">
  3. <script type="text/javascript" src="//cdn.datatables.net/1.10.11/js/jquery.dataTables.min.js"></script>
  4. </head>
  5.  
  6. <body>
  7. <div class="specifications">
  8. <script>
  9. $(document).ready(function(){
  10. $('#myTable').DataTable();
  11. });
  12. </script>
  13.  
  14. <div id="example_wrapper" class="dataTables_wrapper">
  15. <table width="100%" cellspacing="0" class="display nowrap dataTable dtr-inline" id="myTable" role="grid" aria-describedby="example_info" style="width: 100%;">
  16. <thead>
  17. <tr role="row">
  18. <th class="sorting_asc" tabindex="0" aria-controls="example" rowspan="1" colspan="1" style="width: 138px;" aria-sort="ascending" aria-label="Model: activate to sort column descending">Model</th>
  19. <th class="sorting" tabindex="0" aria-controls="example" rowspan="1" colspan="1" style="width: 215px;" aria-label="Roof Width: activate to sort column ascending">Roof Width</th>
  20. <th class="sorting" tabindex="0" aria-controls="example" rowspan="1" colspan="1" style="width: 103px;" aria-label="Body Width: activate to sort column ascending">Body Width</th>
  21. <th class="dt-body-right sorting" tabindex="0" aria-controls="example" rowspan="1" colspan="1" style="width: 42px;" aria-label="Height: activate to sort column ascending">Height</th>
  22. <th class="sorting" tabindex="0" aria-controls="example" rowspan="1" colspan="1" style="width: 93px;" aria-label="Projection: activate to sort column ascending">Projection</th>
  23. <th class="sorting" tabindex="0" aria-controls="example" rowspan="1" colspan="1" style="width: 93px;" aria-label="Wall Plate: activate to sort column ascending">Wall Plate</th>
  24. <th class="dt-body-right sorting" tabindex="0" aria-controls="example" rowspan="1" colspan="1" style="width: 78px;" aria-label="Watts: activate to sort column ascending">Watts</th>
  25. </tr>
  26. </thead>
  27. <tfoot>
  28. <tr>
  29. <th rowspan="1" colspan="1">Model</th>
  30. <th rowspan="1" colspan="1">Roof Width</th>
  31. <th rowspan="1" colspan="1">Body Width</th>
  32. <th rowspan="1" colspan="1">Height</th>
  33. <th rowspan="1" colspan="1">Projection</th>
  34. <th rowspan="1" colspan="1">Wall Plate</th>
  35. <th rowspan="1" colspan="1">Watts</th>
  36. </tr>
  37. </tfoot>
  38. <tbody>
  39. <tr role="row" class="odd">
  40. <td class="sorting_1">1-8003-1</td>
  41. <td>16″</td>
  42. <td>6 1/2″</td>
  43. <td>9″</td>
  44. <td>20 1/2″</td>
  45. <td>9″ x 5″</td>
  46. <td>(1) 150W</td>
  47. </tr>
  48. <tr role="row" class="even">
  49. <td class="sorting_1">1-8003-2</td>
  50. <td>18″</td>
  51. <td>9″</td>
  52. <td>12 1/2″</td>
  53. <td>27 1/2″</td>
  54. <td>12″ x 6″</td>
  55. <td>(1) 150W</td>
  56. </tr>
  57. </tbody>
  58. </table>
  59. </div>
  60.  
  61.  
  62. </div>
  63. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement