Basic HTML Table (DataTable)

by Dominic Myers

HTML

<link rel="stylesheet" href="//cdn.datatables.net/1.10.13/css/jquery.dataTables.min.css">
<script src="//cdn.datatables.net/1.10.13/js/jquery.dataTables.min.js"></script>
<table id="perfectPACMANscores">
    <thead>
        <tr>
            <th>Name</th>
            <th>Score</th>
            <th>Date</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Billy Mitchell</td>
            <td>3333360</td>
            <td>1999-07-03</td>
        </tr>
        <tr>
            <td>Chris Ayra</td>
            <td>3333360</td>
            <td>2000-20-16</td>
        </tr>
    </tbody>
</table>

JavaScript

$(document).ready(function(){
    $('#perfectPACMANscores').DataTable();
});