[jQuery] Re: XML Processing

2008-02-05 Thread Jamie
Thanks for the help Shawn! Works great! On Jan 21, 3:38 am, Shawn [EMAIL PROTECTED] wrote: I did it in this way // jquery  version: 1.2.1 packed if($.browser.msie){// in ie6     $xml=xml+$response+/xml;// xml .. /xml is needed for ie6}else{    

[jQuery] Re: XML Processing

2008-01-21 Thread Shawn
I did it in this way // jquery version: 1.2.1 packed if($.browser.msie){// in ie6 $xml=xml+$response+/xml;// xml .. /xml is needed for ie6 }else{ $xml=$xml.replace(]],).replace(![CDATA[,);// jquery maybe not not support this in firefox.. } // Then this code works fine. // and no Object

[jQuery] Re: XML Processing

2008-01-06 Thread chrismarx
personally, i love using jquery thusly for parsing xml var xml = data; var path = subscr.SubscribersubscriberId; for (var i=0;i$(path,xml).length;i++){ alert( $(+path+:eq(+i+)).text() ) } On Jan 4, 3:09 pm, Jamie [EMAIL PROTECTED] wrote: Hey, I am attempting to process