uses cursors instead, much clearer experience.

This commit is contained in:
2023-10-20 08:54:00 -07:00
parent ce8fa027b2
commit e3443a3dd8
5 changed files with 161 additions and 119 deletions

View File

@@ -126,5 +126,6 @@ elem.dp = new Datepicker(elem, {format: "mm/dd/yyyy", autohide: true});
countRows = function(id) {
var table = document.querySelector(id);
var rows = table.querySelectorAll("tbody tr");
console.log("ROWS", rows.length);
return rows.length;
}