I'm using Laravel datatables(https://github.com/yajra/laravel-datatables). I want to execute my custom script after processing datatables. I want to register event on one of rendering html dom element. how can I make it? I try
$(document).ready(function(){
$('.someclass').on('change',function(){
});
});`
but it dosn't work.