Advertisement
Guest User

Table

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