Answers for "how to check if table is empty in html"

0

how to check if html table is empty using jquery

if ($('#Table1 tr').length == 0) {
    //...do something here
}
Posted by: Guest on May-07-2021
0

javascript check table not empty

document.getElementById("myTable").rows.length
Posted by: Guest on August-26-2020

Code answers related to "how to check if table is empty in html"

Browse Popular Code Answers by Language