Is there an easy way to take a string of html in JavaScript and strip out the html?
|
|
If you're running in a browser, then the easiest way is just to let the browser do it for you...
|
|||||||||||||||||||||
|
|
|||||||||||||||||||
|
|
Simplest way:
That retrieves all the text from a string of html. |
|||||||||||||||||||||
|
Converting HTML for Plain Text emailing keeping hyperlinks (a href) intactThe above function posted by hypoxide works fine, but I was after something that would basically convert HTML created in a Web RichText editor (for example FCKEditor) and clear out all HTML but leave all the Links due the fact that I wanted both the HTML and the plain text version to aid creating the correct parts to an STMP email (both HTML and plain text). After a long time of searching Google myself and my collegues came up with this using the regex engine in Javascript:-
the str var starts out like this:-
which renders like this:- --start-- this string has html code i want to remove Now back to normal text and stuff --end--and then after the code has run it looks like this:-
As you can see the all the HTML has been removed and the Link have been persevered with the hyperlinked text is still intact. Also I have replaced the and To change the link format (eg. "BBC (Link->http://www.bbc.co.uk)" ) just edit the " $2 (Link->$1) ", where $1 is the href URL/URI and the $2 is the hyperlinked text. With the links directly in body of the plain text most SMTP Mail Clients convert these so the user has the ability to click on them. Hope you find this useful. |
|||
|
|
|
I altered Jibberboy2000's answer to include more BR tag types formats, remove everything inside SCRIPT and STYLE tags, format the resulting HTML by removing multiple line breaks and spaces and convert some HTML-encoded code into normal. After some testing it appears that you can convert most of full web pages into simple text where page title and content are retained. In the simple example,
becomes
The Javascript function and test page look this:
It was used with this HTML:
|
||||
|
|
I built this JavaScript library for a Konfabulator widget that does exactly that. It completely strips out comments and <style> and <script> tags and tries to be somewhat smart about converting <br/>'s and <p/>'s into newlines as well. http://github.com/mtrimpe/jsHtmlToText Keep in mind though this only exists to work around the limitations of the Konfabulator TV-widget implementation. |
||||
|
|
|
This version is damn fast in comparison to solution with textContent:
I've tested 20000 invocations on both methods:
It removes tags (even unclosed) and I consider this function pretty safe against bogus javascript insertion described by Mike Samuel. |
||||
|
|
|
Another, admittedly less elegant solution than nickf's or Shog9's, would be to recursively walk the DOM starting at the <body> tag and append each text node.
|
|||||||||||
|
|
As an extension to the jQuery method, if your string might not contian HTML (eg if you are trying to remove HTML from a form field)
will return an empty string if there is no html Use:
instead |
|||
|
|
|
I think the easiest way is to just use Regular Expressions as someone mentioned above. Although there's no reason to use a bunch of them. Try:
|
|||
|
|
A method that strips the legal HTML tags, and escapes everything else:
First of all this is safe. It is also pretty if the string does not contain invalid HTML. Use this if you care about security, and don't want your site to be vulnerable to XSS attacks. |
|||||
|
|
I made some modifications to original Jibberboy2000 script Hope it'll be usefull for someone
|
|||
|
|
Define this as a jquery plugin and use it like as follows:
|
|||
|
|
|
I have created a working regular expression myself:
|
|||
|
|
|
Here's a version which sorta addresses @MikeSamuel's security concern:
Note, it will return an empty string if the HTML markup isn't valid XML (aka, tags must be closed and attributes must be quoted). This isn't ideal, but does avoid the issue of having the security exploit potential. If not having valid XML markup is a requirement for you, you could try using:
but that isn't a perfect solution either for other reasons. |
||||
|
|
|
|||
|
|