Johnny,

If you really need that table in there, try rearranging your HTML so that the form element is inside one of the table's cells:

<table>
<tbody>
  <tr>
    <td>
      <form> ... </form>
    </td>
  </tr>
</tbody>
</table>


--Karl
_________________
Karl Swedberg
www.englishrules.com
www.learningjquery.com



On Dec 13, 2006, at 4:58 AM, Michael Holloway wrote:

if the form like this:

<table>
<form>
<tbody>....<tbody>
</form>
</table>

The table does not display in firefox(i use ff2.0), but it's ok in IE.
and i can find the table of dom from DOM inspector add-on, it does
exists!!

i try some lots of ways to find what happened. And last i find.

if html like this:
<form><table><tbody>....<tbody></table> </form>



Hi Johnny,
Your first code example is incorrect html markup, the second method is
better. This is not a bug in jQuery.
Cheers,
Mike.


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to