How do you write tables within javascript?
I know it's possible to write out each script like so:
<Table width="" border="1">
<TR>
<TD>
Somehting
</TD>
<TD>
<script>
(some action)
</script>
</TD>
</TR>
</TABLE>
I know that is possible but that is a lot of needless writing.
Is there anyway that I can just write one witin javascript.
I can't just write it using a document.write(ln)(<table>...);
Or can I and I'm just missing something.
Thanks.
I know it's possible to write out each script like so:
<Table width="" border="1">
<TR>
<TD>
Somehting
</TD>
<TD>
<script>
(some action)
</script>
</TD>
</TR>
</TABLE>
I know that is possible but that is a lot of needless writing.
Is there anyway that I can just write one witin javascript.
I can't just write it using a document.write(ln)(<table>...);
Or can I and I'm just missing something.
Thanks.