Possible Duplicate:
Strip HTML from Text JavaScript
How can I strip the HTML from a string in JavaScript?
How can I strip the HTML from a string in JavaScript? |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Using the browser's parser is the probably the best bet in current browsers. The following will work, with the following caveats:
Code:
|
|||||||||||
|
That pretty much the best way of doing it, you're letting the browser do what it does best -- parse HTML. Edit: As noted in the comments below, this is not the most cross-browser solution. The most cross-browser solution would be to recursively go through all the children of the element and concatenate all text nodes that you find. However, if you're using jQuery, it already does it for you:
Check out the text method. |
|||||||||||
|
Distilled from this website |
|||||||||||||||
|
|
I know this question has an accepted answer, but I feel that it doesn't work in all cases. For completeness and since I spent too much time on this, here is what we did: we ended up using a function from php.js (which is a pretty nice library for those more familiar with PHP but also doing a little JavaScript every now and then): http://phpjs.org/functions/strip_tags:535 It seemed to be the only piece of JavaScript code which successfully dealt with all the different kinds of input I stuffed into my application. That is, without breaking it – see my comments about the |
|||
|
|