does that also work in IE(6) ?

On Sep 17, 12:43 am, Jonathan <jonandke...@gmail.com> wrote:
> That did it. I was using success which did not provide access to the
> xml as a string I could output, but complete works great. Thanks! Now
> I cane easily get the text, the HTTP Response code.
>
> On Sep 16, 1:32 pm, Mike Alsup <mal...@gmail.com> wrote:
>
> > > I still can't find a solution to simply print out the XML response
> > > from an AJAX call. I'm surprised jQuery can't handle something that
> > > simple, as it can otherwise do so much.
>
> > > The other js libraries don't seem to have a problem with it, it looks
> > > like jQuery just isn't up to the task, and I can't use it for this
> > > project.
>
> > Try hooking the 'complete' callback and access the responseText
> > property of the XHR:
>
> > $.ajax({
> >     ...
> >     complete: function(xhr, status) {
> >         alert(xhr.responseText);
> >     }
>
> > });
>
>

Reply via email to