View Single Post
Old 08-11-2003, 02:21 AM   #8 (permalink)
npa
Code Monkey
 
Join Date: Jul 2003
Location: canada
Posts: 82
npa is on a distinguished road
Quote:
Originally posted by sde
i could not get that to work.
yes, well thats no surprise...

Code:
<table border=1 cellspacing=0 cellpadding=0 width=<script>document.write(i);</script>% bgcolor=blue>
is not valid

try:
Code:
<table id="table1" border="1" othercrap="etc" width="10%">
</table>

<script language="javascript">
table1.width = "500%";
</script>
but it is not clear what you are trying to achieve.

i suggest you read: http://www.w3schools.com tutorials
on javascript before you do any more
__________________
direct entry file specification.
npa is offline   Reply With Quote