How to get the tbody element of a table using JQuery?
$('#Table1 > tbody')
>
will get direct children.
Alternative:
$('#Table1').children('tbody')
$('#Table1 > tbody')
>
will get direct children.
Alternative:
$('#Table1').children('tbody')