Hi,
I have a JS function which includes the following lines:
Is it possible to set "var table" from more than 1 table (i.e., "table2")? I tried to include the line "var table += document.getEle mentById("table 2");", but it didn't work.
Thanks for any suggestions!
I have a JS function which includes the following lines:
Code:
var table = document.getElementById("table1");
var cells = table.getElementsByTagName("div");
for (i = 0; i < cells.length; i++) {
checkedCels = cells[i].id;
var checkboxes = cells[i].getElementsByTagName("input");
Thanks for any suggestions!
Comment