I found it - it was not a prototype issue:
my html was
<table>
bunch of table stuff
<form>
input field, not contained in tr's
</form>
</table>
and Firefox 5 was rewriting it to
<table>
bunch of table stuff
<form></form>
input field
</table>
when I rewrote it to:
<table>
bunch of table stuff
</table>
<form>
input field, not contained in tr's
</form>
it works just fine.
--
Bill Drescher
william {at} TechServSys {dot} com
--
You received this message because you are subscribed to the Google Groups "Prototype
& script.aculo.us" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en.