[jQuery] Re: IE7: loading XML per ajax

2008-11-26 Thread w-o-m
I just tried a most simple XML-file. Same result: ?xml version=1.0 encoding=UTF-8? test animal id=dog/animal animal id=cat/animal animal id=mouse/animal /test 1. Simply opening the xml with IE works without error. 2. errorThrown points to undefined 3. It won't work

[jQuery] Re: IE7: loading XML per ajax

2008-11-25 Thread ricardobeat
IE7 doesn't support SVG afaik. On Nov 25, 6:08 am, w-o-m [EMAIL PROTECTED] wrote: Hello, I tried to load a .svg vector graphic with $.ajax, which works perfectly well in FF and Opera, but not in Internet Explorer. My script looks like this: $(document).ready(function(){         $.ajax({

[jQuery] Re: IE7: loading XML per ajax

2008-11-25 Thread w-o-m
That's true. But a SVG is still just an XML file. I don't need IE to draw the grapic, I just need the data. My script, btw, doesn't work with other XML's either. ricardobeat wrote: IE7 doesn't support SVG afaik. On Nov 25, 6:08�am, w-o-m [EMAIL PROTECTED] wrote: Hello, I tried to load a

[jQuery] Re: IE7: loading XML per ajax

2008-11-25 Thread George
The error message does indicate that it does not like something about XML. Try folowing. 1. Save xml on your drive and simply open it with IE. See if it gives you an error. 2. What does errorThrown points to? 3. The standalone=no not sure it's valid... George. On Nov 25, 3:56 pm, w-o-m