[jQuery] Re: problem with jquery selector in IE

2008-11-03 Thread glowbal
Thanks for the quick response. Too bad the Firefox behavior isn't what is supposed to happen...

[jQuery] Re: problem with jquery selector in IE

2008-11-03 Thread ricardobeat
jQuery doesn't officialy support XML parsing, it just happens to 'happen' :) Try $(xml).contents().filter('url') instead, might work. On Nov 3, 2:56 am, glowbal [EMAIL PROTECTED] wrote: To be more explicit, here is the relevant code: function displayURL(xml) {         try {                

[jQuery] Re: problem with jquery selector in IE

2008-11-02 Thread glowbal
To be more explicit, here is the relevant code: function displayURL(xml) { try { alert(xml); var result = $(url, xml).text(); alert(result); } catch (ex) { alert(ex); } } In the above code the