So if I have a variable like
var ht = "<body><p>Paragraph Here</p></body>"
If it was attached to the DOM I could just do this to get the text
$('p').text();
But can I do the same kind of selection just on a variable that has not yet been attached to the dom?