[jQuery] Resend teh request when jQuery ajax timeout cause error (s.success is not a function)

2008-11-07 Thread KCheng
Hi all, following is my code section ** jQuery.ajax({ url : "http://localhost:8080/carrots/hello.jsf";, type : "POST", data : "action=initUI", tim

[jQuery] Modifying an XML document with jQuery

2008-12-29 Thread KCheng
Hi all, I have define a xml template like this I can use following code to query the template var memberSection = $(reportxml).find("[id=001]"); but following does not work // want to add a "name" attribute to the member $(reportxml).find("[id=001]").attr("name","peter'); Why? Than