sorting - jQuery datatables execute code after onSort event -


i have code (which works):

    $('#rooms').datatable({         "bfilter": false,         "bpaginate": false,         "bautowidth": true,         "binfo": false     }); 

what's working user can sort html table clicking on column header. however, after sort complete, want execute code:

    $("#rooms tr:even").css("background-color", "#eeeeee");     $("#rooms tr:odd").css("background-color", "#ffffff"); 

how can so?


Comments

Popular posts from this blog

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -

php - $params->set Array between square bracket -