If I have a table like:
+-----------+-----------+-----------+
| PRIORITY | ITEM | COMPLETED |
+-----------+-----------+-----------+
| 0 | foo | YES |
+-----------+-----------+-----------+
| 1 | bar | |
+-----------+-----------+-----------+
| 2 | baz | YES |
+-----------+-----------+-----------+
Can plain ol’ HTML auto-generate a final summary line like:
+-----------+-----------+-----------+
| | | 2/3 |
+-----------+-----------+-----------+
No. It can’t. HTML can’t iterate over the rows. With JavaScript it’s no problem.
fn. How to get a table cell value using jQuery?