[Solved] Why does adding DataTables break my page? [closed]


Scripts are included using a <script> tag, not a <link>

<link href="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js" />

should be this:

<script src="https://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js"></script>

0

solved Why does adding DataTables break my page? [closed]