On Apr 8, 4:36 pm, Zac Spitzer <zac.spit...@gmail.com> wrote:
> Is there a trick with IE for extracting the title from
> an ajax response?
>
> This works fine in FF but fails in IE using 1.3.2
> var newTitle=$(response).filter("TITLE");

Presumably response is an HTML document, so why not:

 var newTitle = response.getElementsByTagName('title')[0];


That should work even if it's an XML document.


--
Rob

Reply via email to