[jQuery] Re: XML Parsing Question...

2008-10-15 Thread KenLG
Because I don't want to deal with the customer service calls generated by the ActiveX objects. Plenty of people working in corporate cubbyholes get their computers locked down so that ActiveX isn't allowed to execute. Not that I really want to worry about IE6 but I can't exclude them yet. :)

[jQuery] Re: XML Parsing Question...

2008-10-15 Thread ricardobeat
Ajax's XMLHTTPRequest depends on ActiveX to work in IE6, you are already using it. - ricardo On Oct 15, 4:00 am, KenLG [EMAIL PROTECTED] wrote: Because I don't want to deal with the customer service calls generated by the ActiveX objects. Plenty of people working in corporate cubbyholes get

[jQuery] Re: XML Parsing Question...

2008-10-15 Thread Robert Koberg
On Oct 15, 2008, at 2:00 AM, KenLG wrote: Because I don't want to deal with the customer service calls generated by the ActiveX objects. Plenty of people working in corporate cubbyholes get their computers locked down so that ActiveX isn't allowed to execute. Not that I really want to worry

[jQuery] Re: XML Parsing Question...

2008-10-15 Thread KenLG
True that. Also, I misread Michael's post...I totally blanked on the fact that I could pass the dom object into jquery and go to town on it with that. That's what was making me reluctant to go that route as well (I really wasn't looking forward to walking the DOM). Doing that worked like a

[jQuery] Re: XML Parsing Question...

2008-10-08 Thread KenLG
It may not be supported but it works great...usually. As far as find being case-sensitive, the weird thing is that it doesn't necessarily seem true. I could lcase the tags in the XML but still do the find against the mixed case element name and it still works. I had this suspicion that jquery is

[jQuery] Re: XML Parsing Question...

2008-10-08 Thread Michael Geary
Well... Really, it doesn't work *at all*. You're not using an XML parser. It's an HTML parser. Sure, it will do some kind of passable job of parsing some kinds of XML, sort of, in some browsers. Why not use a real XML parser? function parseXML( xml ) { if( window.ActiveXObject

[jQuery] Re: XML Parsing Question...

2008-10-06 Thread Erik Beeson
To my knowledge, XML parsing via the jQuery constructor isn't supported. See here: http://dev.jquery.com/ticket/3143 --Erik On Sat, Oct 4, 2008 at 12:29 PM, KenLG [EMAIL PROTECTED] wrote: For much of my app, I'm doing an Ajax hit to the server to grab XML. That works great. But, in some

[jQuery] Re: XML Parsing Question...

2008-10-06 Thread Alexandre Plennevaux
and if you simply try $(EventContact,test).length? LAb[au] _ *lab*oratory for *a*rchitecture and *u*rbanism Alexandre Plennevaux Lakensestraat 104 Rue de Laeken Brussel 1000 Bruxelles België _ Belgique _ Belgium tel: +32 (0)2 2196555 fax: +32 (0)2 4266986 mail: [EMAIL PROTECTED] [EMAIL

[jQuery] Re: XML Parsing Question...

2008-10-06 Thread Adrian Lynch
JS is case sensitive, maybe .find() is also? Adrian On Oct 4, 8:29 pm, KenLG [EMAIL PROTECTED] wrote: For much of my app, I'm doing an Ajax hit to the server to grab XML. That works great. But, in some cases, I've got too many pieces of data (unrelated) that I need to pull so I'm trying to