Get started with fixed-data-table CDN

BSD-3-Clause licensed

JS plugin: Fixed-Data Table creates large, scrollable tables with fixed columns and rows.

Tags:
  • react
  • react-component
  • table
  • data-table
  • fixed-table

Stable version

Copied!

How to start using fixed-data-table CDN


<!DOCTYPE html>
<html>
<head>
  <title>Get started with fixed-data-table CDN - cdnhub.io</title>
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fixed-data-table@0.6.5/fixed-data-table.min.css">
</head>
<body>
  <table id="fixed-table">
    <thead>
      <tr>
        <th>Name</th>
        <th>Age</th>
        <th>City</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>John Doe</td>
        <td>30</td>
        <td>New York</td>
      </tr>
      <tr>
        <td>Jane Doe</td>
        <td>25</td>
        <td>Los Angeles</td>
      </tr>
      <tr>
        <td>Bob Smith</td>
        <td>45</td>
        <td>Chicago</td>
      </tr>
      <!-- Add more rows as needed -->
    </tbody>
  </table>

  <script src="https://cdn.cdnhub.io/fixed-data-table/0.6.5/fixed-data-table.min.js"></script>
  <script>
    const table = document.getElementById('fixed-table');
    FixedDataTable.init(table);
  </script>
</body>
</html>
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!
Copied!

All versions