therelentlessfrontend.com
jQuery to check the row count of a table
To get the row count of the table, in jQuery, all you need to do is use any of the following approaches: $(“#mytable tr”).length $(“#mytable tr”).size() //But the size metho…