I have a table structure (Table1) with thead and tbody.
My main thead also has a table inside with its own thead and tbody.
When I use $(\'#Table1 tbod
$(\'#Table1 tbod
simple add table id and get the value example
$('#dc-table tbody').on('keyup','.qty_approved', function(){ alert('tested...'); });
Alternative:
$('#Table1').children('tbody')
$('#Table1 > tbody')
> will get direct children.
>