hi,guys

i get a form in table by jquery.

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>

it can display in ff2.

note: it just happens when you get html in ajax, but it's okay
accessing directly by ff2

I'm sorry my poor English:)
Johnny 



Johnny wrote:
> 
> Hi, guys
> 
> I have a problem when i use jquery's ajax module.
> 
> My jquery code is here:
> 
> $(document).ready(function() {
>       $("div#test").load("xml_to_page.jsp",{"class":"Img","sn":"1"});
>  });
> 
> xml_to_page.jsp is file transform xml to html
> 
>  String xml = "\\xml\\" + class + ".xml";
>  String xsl =  "\\xml\\item_attr_form.xsl";
>     try {
>         XSLTHelper.transform(xml, xsl, out);
>     } catch ( Exception e ) {
>         e.printStackTrace(response.getWriter());
>     }
> 
> it works in IE, it can display html created by the xml_to_page.jsp , but
> it doesn't display in FireFox, and i use DOM Inspect, the div#test
> actually have content.
> 
> So where is the problem?
> 
> Thank you advance!
> 
> Johnny
> 

-- 
View this message in context: 
http://www.nabble.com/Is-it-a-bug-tf2805700.html#a7848698
Sent from the JQuery mailing list archive at Nabble.com.


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

Reply via email to