I found two ways of doing it. The first:
mynewrow = document.all.myTable.insertRow();
mynewrow.style.background = "#cccccc";
mynewrow.insertCell();
mynewrow.insertCell();
mynewrow.insertCell();
mynewrow.insertCell()...
I am trying to access the data contained in dynamically created table rows through the query string. Unfortunately, a submit() doesn't seem to be adding the dynamically created rows to the form data. Any ideas why or how to get around this? Also, for clarity's sake i eliminated the actual data...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.