In my HTML page, I am trying to insert a new row to a table using the
insertRow method. When I call that page using IE, I got an error "Could not
complete the operation due to error 8000000a". How can I add a row and cells
to that row in a table? Thank you.
<TABLE id=oTable border=1>
<TR><TD>Title</TD><TD>Field</TD></TR>
</TABLE>
<script language="JavaScript">
oTR = document.all.oTable.insertRow()
</script>