I can't really say from your answer that you actually solved your
problem, so here is a way to use the browser parser instead of the
jQuery one:

$('<div/
>').html(responseText).find('response_selector').appendTo('target_selector');

This creates a DIV node without adding it to the document in order to
parse your HTML. You can then run a jQuery selector on this node like
on any other node.

--
Vincent

On Jul 7, 6:19 am, theog <[EMAIL PROTECTED]> wrote:
> Thanks. I think the issue here was the Response contained strict xhml
> - html markup that jQuery could not parse. Wierd.
>
> Theo
>

Reply via email to