[thelist] Stopping Dreamweaver invalid markup correction OR
Eliminating spaceafter closing form tag in NN
Seb Potter
seb at admin.evolt.org
Mon May 8 08:17:21 2000
> > Hmm... is this something like "Can I have [TABLE][FORM]
> [/TABLE][/FORM]?"
>
> Pretty much... <td><form></td></form>
>
> It's suggested here:
>
> http://developer.irt.org/script/1212.htm
>
> Which does also say -
>
> "The above maybe not be valid HTML, it may not always work on all
> browsers - but it does what you require."
<sound of hair being torn out>
George,
IRT.ORG is just plain wrong. There is absolutely no need to use this
completely invalid HTML to render your form properly.
Just do:
<table>
<form>
<tr>
<td>form elements go here...
</td>
</tr>
</form>
</table>
OR:
<table>
<tr>
<form>
<td>form elements go here...
</td>
</form>
</tr>
</table>
Best of all, Dreamweaver tends to handle this without choking. (At
least, v3 does, not 100% certain about 2.)
Right, I'm off to drop-kick some kittens. (And whoever is in charge of
IRT.) Grrrrrr.
Seb.