[jQuery] jQuery.find() in XMLHttpRequest.responseText?
Hi
I'm trying to find paragraphs in the XMLHttpRequest.responseText but
always get typeof object instead of a string. The responseText
contains a full HTML Document:
<code>
var myText = new jQuery('<span>' +
jQuery(XMLHttpRequest.responseText).find('p') + '</span>');
jQuery('#myID').text(myText);
</code>
Any help please?