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#a7827836
Sent from the JQuery mailing list archive at Nabble.com.


_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to