Using the initialization guide from Datatables.net, no matter what changes I've tried the page is returned empty. I've tried hosting the files rather than using the CDN, updating to the most recent versions of jQuery, and searching for this but haven't seen anyone else with this error.
<!-- DataTables CSS -->
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.9/css/jquery.dataTables.css">
<!-- Initialising DataTables -->
<?
$(document).ready(function(){
$('#tableDataset').DataTable();
});
?>
<table id="tableDataset" class="display">
<thead>
<tr>
<th>Column 1</th>
<th>Column 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Row 1 Data 1</td>
<td>Row 1 Data 2</td>
</tr>
<tr>
<td>Row 2 Data 1</td>
<td>Row 2 Data 2</td>
</tr>
</tbody>
</table>
<!-- jQuery -->
<script src="/assets/plugins/dashboard/jquery-1.10.2.min.js" type="text/javascript"></script>
<!-- DataTables -->
<script type="text/javascript" charset="utf8" src="//cdn.datatables.net/1.10.9/js/jquery.dataTables.js"></script>