in reply to Re: Submitting forms with CGI::Ajax-created fields
in thread Submitting forms with CGI::Ajax-created fields

Hrmph... Never even considered it might be a Firefox bug... Rearranging things so that the table is inside the form instead of the other way around did the trick (and fortunately there's only one form on that page). Thanks!
  • Comment on Re^2: Submitting forms with CGI::Ajax-created fields

Replies are listed 'Best First'.
Re^3: Submitting forms with CGI::Ajax-created fields
by ikegami (Patriarch) on Jul 23, 2007 at 18:57 UTC
    It's not a Firefox bug. It's a bug in your HTML. Specifically, <tr><form name=myform action=test.cgi method=get> is illegal. The TR element can only contain (TH|TD)+. You can make it legal by placing the TABLE inside the FORM, or you can place the FORM inside a TD.