Get started with datatables.net-responsive CDN

MIT licensed

Datatables.net-responsive is a plugin for the Datatables.net library that enables tables to adapt to different screen sizes and resolutions for responsive design.

Tags:
  • responsive
  • jQuery
  • table
  • DataTables

Stable version

Copied!

How to start using datatables.net-responsive CDN


<!DOCTYPE html>
<html>
<head>
    <title>Get started with datatables.net-responsive CDN - cdnhub.io</title>
    <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.11.5/css/jquery.dataTables.min.css">
    <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/responsive/3.0.0/css/dataTables.responsive.min.css">
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script src="https://cdn.datatables.net/1.11.5/js/jquery.dataTables.min.js"></script>
    <script src="https://cdn.cdnhub.io/datatables.net-responsive/3.0.0/dataTables.responsive.min.js"></script>
</head>
<body>
    <table id="example" class="display responsive nowrap" style="width:100%">
        <thead>
            <tr>
                <th>Name</th>
                <th>Position</th>
                <th>Office</th>
                <th>Age</th>
                <th>Start date</th>
                <th>Salary</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>Tiger Nixon</td>
                <td>System Architect</td>
                <td>Edinburgh</td>
                <td>54</td>
                <td>2011/04/25</td>
                <td>$320,800</td>
            </tr>
            <!-- Add more rows here -->
        </tbody>
    </table>

    <script>
        $(document).ready( function () {
            $('#example').DataTable({
                responsive: true,
                autoWidth: false,
            });
        });
    </script>
</body>
</html>
Copied!
Copied!

All versions