I'm struggling to get the data tables plugin working on my website. This is a .Net 4.5 MVC web application. I've installed jQuery(2.1.3) and DataTables(1.10.4) via nuGet. I've been trying various setups and have tried replacing my code completely with the examples on the data tables website with no luck. Can anyone tell me what I'm doing wrong?
<script src="~/Scripts/jquery-2.1.3.min.js"></script>
<script src="~/Scripts/DataTables-1.10.4/jquery.dataTables.js"></script>
<link href="~/Content/DataTables-1.10.4/css/jquery.dataTables.css" rel="stylesheet" />
<div class="col-md-12">
<table id="searchInventoryResults" class="display">
<thead>
<tr>
<th>Assigned Location</th>
<th>Manufacturer</th>
<th>Model</th>
<th>Serial Number</th>
<th>MCSC Tag Number</th>
<th>PO Number</th>
<th>Salvage Date</th>
</tr>
</thead>
<tbody>
<tr>
<td>CCC floor-6 F-3</td>
<td>Toshiba</td>
<td>LR-1</td>
<td>100215555</td>
<td>523144632</td>
<td>522133354</td>
<td>11/13/2225</td>
</tr>
<tr>
<td>CCC floor-5 G-3</td>
<td>Toshiba</td>
<td>LR-1</td>
<td>100215566</td>
<td>523144566</td>
<td>522133366</td>
<td>11/13/2235</td>
</tr>
</tbody>
</table>
<script>
$(document).ready(function () {
$('#searchInventoryResults').DataTable();
});
</script>
The script and css paths are drag and drop from the folders they reside in, in the project. I do have two other jQuery features up and running perfectly in the site currently.
Specifically, none of the features are showing up. There is no search box, I can't click on columns, the css isn't affecting the table.