See the code below:
$(document).ready(function() {
$('#table_busca').DataTable();
});
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script><scriptsrc="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css">
<script src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script><form><tableclass="table table-striped" id="table_busca">
<thead>
<tr>
<th>Data</th>
<th>Título</th>
<th>Fontes</th>
</tr>
</thead>
<tbody>
<tr>
<td>09/02/2018</td>
<td>CONTÁBIL - Regulamentação da RFB sobre o reconhecimento contábil de receitas</td>
<td>Jota Info</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</form>
I'm following this video below:
Tip of the Week # 4 - Search, Filtering, Paging, and Quick Styling of Tables with DataTables
What corresponds to this page:
But Jquery is not working, someone could take a look to see if anyone finds something wrong.