I'm working with jquery datatable. I would like to be able to select a row (Add the classe seleted) but passing it an id.
Let me explain, when I click on a row, it is shaded, I want it to do that but without clicking, for example, passing it an id of the row.
This is the code
tblProyectosFueraPlazo.on('init', function () {
var rowToSelect = '#row_' + '0';
tblProyectosFueraPlazo.row(rowToSelect).select();
});