So I'm grabbing some content from an xml file. Actually, to be
specific, an article, the layout is essentially:
<article>
       <title>This title is rad.</title>
       <text>
       And this is some awesome article text.
       </text>
</article>



Only thing is, I want the article text to be xhtml-enabled. so there's
<b>'s and <br/>'s and such in there, and we're looking at something
more like

<article>
       <title>This title is rad.</title>
       <text>
       And this is some <b>awesome</b> article text.<br/>
       It's HTML formatted though, <i>that could pose a problem</i>.
       </text>
</article>


I want to grab ALL of the text content inside of the <text> node, and
just carte blanche throw it in the page.

So.. how can I do that? .text() strips out all the html
entities,  .html() works what I can best describe as 'intermittently',
and is unsupported for xml documents (only supported for html
docs).... what can i use to just tell js/jquery to "find everything
between <text> and </text>, and stick it in the DOM as xhtml, tags
included"?

Reply via email to