Currently search text is searching on all columns. I just want to search on first column and also want to highlight the searched text. I red the documentation of datatable but it getting over from my mind. Is there any simple way to get this done. fiddle
$(document).ready(function(){
var table= $('#example').DataTable({
paging:false,
ordering:false
});
$('#search-inp').keyup(function(){
table.search($(this).val()).draw() ;
})
});