There is a configuration to remove or hide alerts from Datatables 1.10v,
$('#tabla_repuestos').DataTable( {
"paging": false
} );
That error comes out because you have specified twice that #tabla_repuestos
is a dataTables something like this:
$('#tabla_repuestos').dataTable( {
paging: false
} );
$('#tabla_repuestos').dataTable( {
searching: false
} );
Check the page that tells you that alert give you more reasons why that alert and possible solutions you can do
One of them is:
$('#tabla_repuestos').dataTable( {
paging: false,
searching: false
} );
table = $('#tabla_repuestos').DataTable( {
paging: false
} );
table.destroy();
table = $('#tabla_repuestos').DataTable( {
searching: false
} );
NOTE:
These alerts can only be removed by modifying the plugin.
If you have modified the plugin by removing the alerts, you will not be able to know which is the reason for the failure in the future and you will be worse off