Firebug is showing you the document inside of Firefox, not the source. Firefox adds the tbody, that is why you see it in Firebug. If the form is missing or grey, that is how it is inside of Firefox.
jjb On Nov 8, 7:39 am, stepp <[EMAIL PROTECTED]> wrote: > Hi there > > Firebug (1.3.02b now) doesn't show the closing form on (bad style, but > cut to the essential information): > > <BODY> > <table id="mytable"> > <form action="justoneurl" method="post" > > <tr> > <td> > <input class="btn_class" type="submit" value="button"> > </td> > </tr> > <tr> > <td> > <input name="name_inp" size="20" > > </td> > </tr> > </form> > </table> > </BODY> > > Firebug only shows (copied with "copy" on "<html>" = Firebug's > rootnode) > > <html><head><style charset="utf-8" type="text/css">/* See license.txt > for terms of usage */ > /* many styles */ > </style></head><body> > <table id="mytable"> > <form method="post" action="justoneurl"/> > <tbody><tr> > <td> > <input type="submit" value="button" class="btn_class"/> > </td> > </tr> > <tr> > <td> > <input size="20" name="name_inp"/> > </td> > </tr> > > </tbody></table> > </body></html> > > It shows <form .../> grey as if it is a hidden element. > > I need to detect the closing form. > > Besides I'm wondering about the tbody-tag that doesn't exist in the > real source. > > Grateful for answers. > > Regards stepp --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Firebug" 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/firebug?hl=en -~----------~----~----~----~------~----~------~--~---
