How can I change a table with javascript?
I know I can add or remove rows... and create cell in those rows. I already found information to do that... however, how can I get the TABLE object for a given table in a document?
Code:
<table name="x">
</table>
.
.
.
.
.
<script>
function modify() {
var table = document.x
}
</script>
is that it?