Cross browser xml element selectors?

Envyy

New Member
Given an HTML document containing an xml element, something like this:\[code\]<xml><Test><Thing></Thing></Test></xml>?\[/code\]Is there any good cross-browser solution to select elements out of there?I would have thought that some simple jQuery would have worked, like the following:\[code\]$("xml Test Thing")\[/code\]It works fine on Chrome, but doesn't find anything in IE 9.jsFiddle: http://jsfiddle.net/hnztj/Some background: I've got an older page that only works in IE. It bakes some XML into the document server-side, and then uses ActiveX controls to extract information from the XML. I'm trying to make it work in Chrome. Tweaking things to use jQuery works great on Chrome, but now IE doesn't work. BOO.
 
Back
Top